第一種方法
依照YII系統的辦法產生視圖覺得有點麻煩,覺得用smarty更省事。試著著把smarty模板加進來了。
date_default_timezone_set("PRC"); class PlaceController extends CController { protected $_smarty; function __construct(){ parent::__construct('place');//需要一个参数来调用父类的构造函数,该参数为控制器ID $path = Yii::getPathOfAlias('application');//获得protected文件夹的绝对路径 include (dirname($path).DIRECTORY_SEPARATOR.'Smarty'.DIRECTORY_SEPARATOR.'Smarty.class.php');//smarty所在路径 $this->_smarty = new Smarty(); $this->_smarty->template_dir = dirname($path).DIRECTORY_SEPARATOR.'template'.DIRECTORY_SEPARATOR;//模板路径 }
主要一個問題是自動載入類別執行衝突的問題。
YII註冊了一個自動載入類spl_autoload_register(array('YiiBase','autoload')),SMARTY也註冊了一個自動載入類,spl_autoload_register('smartyAutoload'),YII 註冊在前,這樣在遇到一個類別名稱的時候,先執行的是YII的自訂自動載入類別的函數,對應SMARTY裡的每個類別名稱而言,也是先呼叫YII的自動載入類別的函數,但是如果不符合YII自動載入的條件的話,就會執行SMARTY的自動載入類別的函數,然而,SMARTY的類別名稱在自動載入類別的時候,確符合了YII自動載入類別的邏輯語句,結果就是YII使用Include語句要包含的類別肯定找不到。
解決的方法是:當SMARTY的類別自動載入的時候,跳出在YII定義的自動載入函數,這樣就會執行SMARTY的載入函數。
具體實作是,修改YIIBase類別裡面的autoload函數,增加如下程式碼
public static function autoload($className) { // use include so that the error PHP file may appear if(preg_match('/smarty/i', $className)){ //只要类名包含smarty的,无论大小写,都返回,这样就跳出了YII自动加载类而去执行 SMARTY的自动加载类函数了 return; } YII自动加载类代码 }
這樣就可以在每個Action裡使用smarty模板了。
public function actionIndex(){ $this->_smarty->assign('test', '测试'); $this->_smarty->display('create.html'); }
在protected下的extensions資料夾放入smarty模板插件,並建立CSmarty類文件,內容如下
<?php require_once(Yii::getPathOfAlias('application.extensions.smarty').DIRECTORY_SEPARATOR.'Smarty.class.php'); define('SMARTY_VIEW_DIR', Yii::getPathOfAlias('application.views')); class CSmarty extends Smarty { const DIR_SEP = DIRECTORY_SEPARATOR; function __construct() { parent::__construct(); $this->template_dir = SMARTY_VIEW_DIR; $this->compile_dir = SMARTY_VIEW_DIR.self::DIR_SEP.'template_c'; $this->caching = true; $this->cache_dir = SMARTY_VIEW_DIR.self::DIR_SEP.'cache'; $this->left_delimiter = '<!--{'; $this->right_delimiter = '}-->'; $this->cache_lifetime = 3600; } function init() {} } ?>
然後建立samrty所需的template_c,cache等資料夾。
接下來是設定部分
開啟protected/config/main.php在components陣列加入
'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了。
更多PHP 基於Yii框架中使用smarty模板的方法詳解相關文章請關注PHP中文網!