smarty高级特性之对象的使用方法_php教程-查字典教程网 assign("dog",$dog1);$smarty->disp..."/>
smarty高级特性之对象的使用方法
smarty高级特性之对象的使用方法
发布时间:2016-12-29 来源:查字典编辑
摘要:本文实例讲述了smarty高级特性之对象的使用方法。分享给大家供大家参考,具体如下:name="firstdog";$smarty->ass...

本文实例讲述了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教程学习
    热门php教程学习
    编程开发子分类