assign("dog",$dog1);$smarty->display('test.tpl');>te">
时间:2021-07-01 10:21:17 帮助过:5人阅读
<?php include_once('smarty.inc.php'); class Dog{ public $name; public function sayHello(){ echo 'hello'; } } $dog1=new Dog(); $dog1->name="first dog"; $smarty->assign("dog",$dog1); $smarty->display('test.tpl'); ?>
test.tpl文件:
属性调用:{$dog->name}
方法调用:{$dog->sayHello()}
输出显示:
first dog
hello
希望本文所述对大家基于smarty的PHP程序设计有所帮助。