要在某些區域使緩存失效(只對需要的緩存),有幾種方法:
一、inser:
定義一個inser標簽要使用的處理函數,函數名格式為:insert_xx(array $params, object &$smarty)其中的xx是insert的name,也就是說,如果你定義的函數為insert_abc,則模板中使用方法為{insert name=abc}
參數通過$params傳入
也可以做成insert插件,文件名命名為:insert.xx.php,函數命名為:smarty_insert_aa($params,&$smarty),xx定義同上
二、register_block:
定義一個block:smarty_block_name($params,$content, &$smarty){return $content;} //name表示區域名
注冊block:$smarty->register_block(name, smarty_block_name, false); //第三參數false表示該區域不被緩存
模板寫法:{name}內容 {/name}
寫成block插件:
(1)定義一件插件函數:block.cacheless.php,放在smarty的 plugins目錄
block.cacheless.php的內容如下:
<?php
function smarty_block_cacheless($param, $content, &$smarty) {
return $content;
}
?>
(2) 編寫程序及模板
示例程序:testCacheLess.php
<?php
include(Smarty.class.php);
$smarty = new Smarty;
$smarty->caching=true;
$smarty->cache_lifetime = 6;
$smarty->display(cache.tpl);
?>
所用的模板:cache.tpl
已經緩存的:{$smarty.now}<br>
{cacheless}
沒有緩存的:{$smarty.now}
{/cacheless}
現在運行一下,發現是不起作用的,兩行內容都被緩存了
(3)改寫Smarty_Compiler.class.php(注:該文件很重要,請先備份,以在必要時恢復)
查找$this->_plugins[block][$tag_command] = array($plugin_func, null, null, null, true); //我的在705行
修改成:
if($tag_command == cacheless) $this->_plugins[block][$tag_command] = array($plugin_func, null, null, null, false);
else $this->_plugins[block][$tag_command] = array($plugin_func, null, null, null, true);
你也可以直接將原句的最後一個參數改成false,我對smarty的內部機制不太了解,所以加了一個判斷,只要block是cacheless的才不作緩存
(4)OK,現在清除template_c裡的編譯文件,重新運行,起作用了吧?