----------smarty 模板,為了節省編譯過程
$tpl->template_dir = 'templates/';
$tpl->compile_dir = 'templates_c/';
$tpl->display('index.tpl'); //處理正常 ----------smarty 緩存,為了快速讀取
$tpl->caching = true; //should be true when it on the host
$tpl->cache_lifetime = 60 * 60 * 24; //設置緩存時間,when it on the host cache for one day
$tpl->cache_dir = 'cache/';
$tpl->display('index.tpl'); // 處理異常,無法動態讀出數據庫內容,僅顯示標題或變量 ----------smarty 靜態頁面生成,為了搜索引擎
smarty生成靜頁頁面的話是很容易而且方便的。
$content = $smarty->fetch();
這個就可以很容易得到由smarty生成的頁面內容然後再寫入一個Html文件中就OK了。:)