Smarty擴展設置
擴展設置
這是基本安裝的繼續,請先閱讀那個文件!
一個更靈活一點的配置Smarty的方法是擴展類,和初始化你的smarty環境。
爲了避免重複地配置路徑,我們可以在一個文件裏配置這些變量。
我們創建一個目錄 "/php/includes/guestbook/" 建立一個文件"setup.php"
同樣先設置好smarty路徑。
例2-10.編輯 /php/includes/guestbook/setup.php
// load Smarty library
require('Smarty.class.php');
// The setup.php file is a good place to load
// required application library files, and you
// can do that right here. An example:
// require('guestbook/guestbook.lib.php');是一個很好的加載應用程序的類庫文件(就是擴展類)
//例如你可以在index文件裏包含它
class Smarty_GuestBook extends Smarty {
function Smarty_GuestBook() {
// Class Constructor. These automatically get set with each new instance.
//類構造函數.創建實例的時候自動配置
$this->Smarty();
$this->template\_dir = '/web/www.mydomain.com/smarty/guestbook/templates/';
$this->compile\_dir = '/web/www.mydomain.com/smarty/guestbook/templates\_c/';
$this->config\_dir = '/web/www.mydomain.com/smarty/guestbook/configs/';
$this->cache\_dir = '/web/www.mydomain.com/smarty/guestbook/cache/';
$this->caching = true;
$this->assign('app\_name','Guest Book');
}
}
現在我們針對setup文件更改一下index文件
Smarty手冊範例 2-11.編輯/web/www.mydomain.com/docs/guestbook/index.php
require('guestbook/setup.php');
$smarty = new Smarty_GuestBook;
$smarty->assign('name','Ned');
$smarty->display('index.tpl');
現在你看到創建一個使用smarty的實例有多麼的簡單.從Smarty_GuestBook開始,重新構建我們的應用程序吧^_^