您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)php中怎么配置smarty模板引擎存,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
php中smarty模板引擎存配置方法有什么
$smarty->cache_dir=“目錄名”;//創(chuàng)建緩存目錄名
$smarty->caching=true;//開啟緩存,為false的時候緩存無效
$smarty->cache_lifetime=60;//緩存時間,單位是秒
Smarty緩存的使用與清除
$marty->display(“cache.tpl”,cache_id);//創(chuàng)建帶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_函數(shù)默認(rèn)不緩存,這個屬性不能修改
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表示區(qū)域名
注冊block:$smarty->register_block('name','smarty_block_name',false);//第三參數(shù)false表示該區(qū)域不被緩存
模板寫法:{name}內(nèi)容{/name}
寫成block插件:
1)定義一件插件函數(shù):block.cacheless.php,放在smarty的plugins目錄
block.cacheless.php的內(nèi)容如下:
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
已經(jīng)緩存的:{$smarty.now}
{cacheless}
沒有緩存的:{$smarty.now}
{/cacheless}
4自定義緩存
設(shè)置cache_handler_func使用自定義的函數(shù)處理緩存
如:
$smarty->cache_handler_func=“myCache”;
functionmyCache($action,&$smarty_obj,&$cache_content,$tpl_file=null,$cache_id=null,$compile_id=null){
}
該函數(shù)的一般是根椐$action來判斷緩存當(dāng)前操作:
switch($action){
case“read”://讀取緩存內(nèi)容
case“write”://寫入緩存
case“clear”://清空
}
一般使用md5($tpl_file.$cache_id.$compile_id)作為唯一的cache_id
如果需要,可使用gzcompress和gzuncompress來壓縮和解壓
關(guān)于php中怎么配置smarty模板引擎存就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。