在開啟smarty緩存的情況下,第一次執行時會將其編譯好的輸出文件保存到cache目錄中,然後在程序中通過smarty的is_cache()函數檢測其 cache文件是否過期,如果過期會更新緩存,如果沒有過期會自動調用cache文件,這樣就省去了編譯的過程。檢測cache過期是看模板文件是否在指定的生命周期內是否更改,這裡的更改是通過檢測文件的最近修改時間實現的,不是通過檢測模板文件內容。
防止一個模板文件的整篇都被緩存:
index.php文件:
復制代碼 代碼如下:require('smarty.class.php');
$smarty = new smarty;
$smarty->caching = true;
function smarty_block_dynamic($param, $content, &$smarty) {
return $content;
}
$smarty->register_block('dynamic', 'smarty_block_dynamic', false);
$smarty->display('index.tpl');
index.tpl:
復制代碼 代碼如下:page created: {"0"|date_format:"%d %h:%m:%s"}
{dynamic}
now is: {"0"|date_format:"%d %h:%m:%s"}
... do other stuff ...
{/dynamic}
當重新加載這個頁面,你將會注意到這兩個日期不同。一個是“動態“,一個是“靜態”。你能夠在{dynamic}...{/dynamic}之間作任何事情,並且保證它將不會像剩下的頁面一樣被緩存。