PHP 基于Yii框架中使用smarty模板的方法详解(2)


'smarty'=>array(
    'class'=>'application.extensions.CSmarty',
),


最后在action中直接用Yii::app()->smarty就可以试用smarty了。如果每次在action中使用Yii::app()->smarty比较麻烦的话,可以在components下的Controller中可以加入

复制代码 代码如下:


protected $smarty = '';
protected function init() {
       $this->smarty = Yii::app()->smarty;
 }


然后在action中就直接可以用$this->smarty使用smarty了。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/e84bbbbcd27d44fb3bbb8f77fe368f58.html