您的位置:首页 > 其它

smarty高级特性之对象的使用方法

2015-12-25 00:00 453 查看
本文实例讲述了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程序设计有所帮助。

您可能感兴趣的文章:

PHP 基于Yii框架中使用smarty模板的方法详解
CodeIgniter中使用Smarty3基本配置
php实现smarty模板无限极分类的方法
smarty简单应用实例
smarty中常用方法实例总结
Thinkphp+smarty+uploadify实现无刷新上传
yii,CI,yaf框架+smarty模板使用方法
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: