1,Smarty缓存的配置:
$smarty->cache-dir="目录名"; //创建缓存目录名
$smarty->caching=true; //开启缓存,为false的时候缓存无效
$smarty->cache_lifetime=60; //缓存时间,单位是秒
2,Smarty缓存的使用与清除
$marty->display("cache.tpl",cache_id); //创建带ID的缓存
$marty->clear_all_cache(); //清楚所有缓存
$marty->clear_cache("index.PHP"); //清楚index.PHP中的缓存
$marty->clear_cache("index.PHP',cache_id); //清楚index.PHP中指定ID的缓存
3,Smarty的局部缓存
第一个: insert_函数默认是不缓存,这个属性是不能修改
使用方法:例子
index.PHP中,
function insert_get_time(){
return date("Y-m-d H:m:s");
}
index.html中,
{insert name="get_time"} 第二个: smarty_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,&$smarty) {
return $content;
}
?>
2) 编写程序及模板
示例程序:testCacheLess.PHP
<div class="codetitle"><a style="CURSOR: pointer" data="65865" class="copybut" id="copybut65865" onclick="doCopy('code65865')"> 代码如下: