本文实例讲述了smarty高级特性之对象的使用方法。分享给大家供大家参考,具体如下:
<?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}<br />
方法调用:{$dog->sayhello()}
输出显示:
first dog
hello
希望本文所述对大家基于smarty的php程序设计有所帮助。
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!