Home > Backend Development > PHP Tutorial > smarty高级特性之对象的使用方法_PHP

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

WBOY
Release: 2016-05-28 11:49:46
Original
903 people have browsed it

本文实例讲述了smarty高级特性之对象的使用方法。分享给大家供大家参考,具体如下:

<&#63;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');
&#63;>

Copy after login

test.tpl文件:

属性调用:{$dog->name}<br />
方法调用:{$dog->sayHello()}

Copy after login

输出显示:

first dog
hello

希望本文所述对大家基于smarty的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template