'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了。
您可能感兴趣的文章: