標題:
smarty設定
[打印本頁]
作者:
may
時間:
2011-6-26 10:54
標題:
smarty設定
index.php
<?
require("C:\AppServ\www\Smarty\Smarty.class.php");
// 匯入smarty class 的檔案,必須是絕對路徑
$smarty = new Smarty();
// new 一個 smarty 物件
$smarty -> setTemplateDir('/Smarty/templates');
// 範本 放 html
$smarty -> setCompileDir('/Smarty/templates_c');
// 編譯後的 ..
$smarty -> setCacheDir('/Smarty/cache');
// 快取資料夾
$smarty -> setConfigDir('/Smarty/configs');
// 設定檔資料夾
$smarty -> assign('name','stephen');
$smarty -> assign('title','我的第一個 smarty');
// 指定 name 變數為 stephen
$smarty -> display('index.tpl');
// 指定顯示的檔案
?>
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2