代入オブジェクトメソッド
htmlタグ記述メソッド{$オブジェクト名->属性名/メソッド名()}は一般的にはあまり使われない
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>temp3</title> </head> <body> <h1>{$man->name}</h1> <h1>{$man->say()}</h1> </body> </html>
<?php /* assgin赋值对象 smarty配置简化(temp,comp地址)封装到类 */ class man{ public $name='八郎'; public function say(){ echo 'what?my name is '.$this->name; } } $man= new man(); <strong>require</strong>('../../smarty3/libs/Smarty.class.php'); <strong>require</strong>('./mysmarty.class.php'); $smarty=new MySmarty(); // 赋值对象 $smarty->assign('man',$man); $smarty->display('temp4.html'); ?>
<?php class MySmarty extends Smarty{ /*$this->template_dir='./temp'; $this->compile_dir='./comp'; 因为是父类私有属性,所以不能改写 smarty内部有开放的接口,setTemplateDir可修改*/ public function __construct(){ parent::__construct(); $this->setTemplateDir('./temp'); $this->setCompileDir('./comp'); } }
上記は、Smarty の割り当てオブジェクト メソッドを紹介し、必要なコンテンツを含む簡略化されたカプセル化クラスを構成しています。PHP チュートリアルに興味のある友人に役立つことを願っています。