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, $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}
4自訂緩衝
設定cache_handler_func使用自訂的函數處理緩衝
如:
$smarty->cache_handler_func = "myCache";
function myCache($action, &$smarty_obj, &$cache_content, $tpl_file=null, $cache_id=null, $compile_id=null){
}
該函數的一般是根椐$action來判斷緩衝當前操作:
switch($action){
case "read"://讀取緩衝內容
case "write"://寫入緩衝
case "clear"://清空
}
一般使用md5($tpl_file.$cache_id.$compile_id)作為唯一的cache_id
如果需要,可使用gzcompress和gzuncompress來壓縮和解壓