现在的位置: 首页 > 综合 > 正文

smarty中的高级特性(-) 对象的使用

2013年07月06日 ⁄ 综合 ⁄ 共 293字 ⁄ 字号 评论关闭

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

抱歉!评论已关闭.