您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關php中怎么配置smarty模板引擎存,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
php中smarty模板引擎存配置方法有什么
$smarty->cache_dir=“目錄名”;//創建緩存目錄名
$smarty->caching=true;//開啟緩存,為false的時候緩存無效
$smarty->cache_lifetime=60;//緩存時間,單位是秒
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的緩存
php中smarty模板引擎局部緩存有哪些方法
第一個:insert_函數默認不緩存,這個屬性不能修改
index.php中,
functioninsert_get_time(){
returndate(“Y-m-dH:m:s”);
}
index.html中,
{insertname=“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的內容如下:
functionsmarty_block_cacheless($param,$content,&$smarty){
return$content;
}
?>
2)編寫程序及模板
示例程序:testCacheLess.php
include('Smarty.class.php');
$smarty=newSmarty;
$smarty->caching=true;
$smarty->cache_lifetime=6;
$smarty->display('cache.tpl');
?>
所用的模板:cache.tpl
已經緩存的:{$smarty.now}
{cacheless}
沒有緩存的:{$smarty.now}
{/cacheless}
4自定義緩存
設置cache_handler_func使用自定義的函數處理緩存
如:
$smarty->cache_handler_func=“myCache”;
functionmyCache($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來壓縮和解壓
關于php中怎么配置smarty模板引擎存就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。