最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php smarty模版引擎中的緩存應(yīng)用

 更新時(shí)間:2009年12月11日 16:43:15   作者:  
php smarty模版引擎中的緩存應(yīng)用實(shí)例代碼。
1,Smarty緩存的配置:
$smarty->cache-dir="目錄名"; //創(chuàng)建緩存目錄名
$smarty->caching=true; //開(kāi)啟緩存,為false的時(shí)候緩存無(wú)效
$smarty->cache_lifetime=60; //緩存時(shí)間,單位是秒
2,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的緩存
3,Smarty的局部緩存
第一個(gè): insert_函數(shù)默認(rèn)是不緩存,這個(gè)屬性是不能修改
使用方法:例子
index.php中,
function insert_get_time(){
return date("Y-m-d H:m:s");
}
index.html中,
{insert name="get_time"}

第二個(gè): smarty_block
定義一個(gè)block:smarty_block_name($params,$content, &$smarty){return $content;} //name表示區(qū)域名
注冊(cè)block:$smarty->register_block('name', 'smarty_block_name', false); //第三參數(shù)false表示該區(qū)域不被緩存
模板寫(xiě)法:{name}內(nèi)容{/name}
寫(xiě)成block插件:
1)定義一件插件函數(shù):block.cacheless.php,放在smarty的plugins目錄
block.cacheless.php的內(nèi)容如下:
<?php
function smarty_block_cacheless($param, $content, &$smarty) {
return $content;
}
?>
2) 編寫(xiě)程序及模板
示例程序:testCacheLess.php
復(fù)制代碼 代碼如下:

<?php
include('Smarty.class.php');
$smarty = new Smarty;
$smarty->caching=true;
$smarty->cache_lifetime = 6;
$smarty->display('cache.tpl');
?>

所用的模板:cache.tpl
已經(jīng)緩存的:{$smarty.now}<br>
{cacheless}
沒(méi)有緩存的:{$smarty.now}
{/cacheless}
4自定義緩存
設(shè)置cache_handler_func使用自定義的函數(shù)處理緩存
如:
$smarty->cache_handler_func = "myCache";
function myCache($action, &$smarty_obj, &$cache_content, $tpl_file=null, $cache_id=null, $compile_id=null){
}
該函數(shù)的一般是根椐$action來(lái)判斷緩存當(dāng)前操作:
switch($action){
case "read"://讀取緩存內(nèi)容
case "write"://寫(xiě)入緩存
case "clear"://清空
}
一般使用md5($tpl_file.$cache_id.$compile_id)作為唯一的cache_id
如果需要,可使用gzcompress和gzuncompress來(lái)壓縮和解壓

相關(guān)文章

最新評(píng)論

瑞丽市| 垣曲县| 华蓥市| 平度市| 酒泉市| 黄梅县| 甘泉县| 文水县| 江北区| 方山县| 莫力| 棋牌| 建水县| 九龙县| 宜阳县| 溆浦县| 永泰县| 石河子市| 洪泽县| 东港市| 华阴市| 卢龙县| 日照市| 唐河县| 南澳县| 鄂托克前旗| 封开县| 金乡县| 浮梁县| 洛南县| 元谋县| 故城县| 崇阳县| 精河县| 安龙县| 右玉县| 诸暨市| 连平县| 静安区| 永嘉县| 黔江区|