這篇文章將為大家詳細(xì)講解有關(guān)php中怎么配置smarty模板引擎存,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
成都創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的清水網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
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é)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。