php smarty模版引擎中的缓存应用
2015-01-24信息快讯网
php smarty模版引擎中的缓存应用实例代码。
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来压缩和解压
php smarty 二级分类代码和模版循环例子
PHP数组的交集array_intersect(),array_intersect_assoc(),array_inter_key()函数的小问题
php异常:Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE eval()'d code error
在smarty模板中使用PHP函数的方法
PHP学习之输出字符串(echo,print,printf,print_r和var_dump)
php 数组排序 array_multisort与uasort的区别
用php的ob_start来生成静态页面的方法分析
php Smarty 字符比较代码
smarty模板嵌套之include与fetch性能测试
smarty中先strip_tags过滤html标签后truncate截取文章运用
phpmyadmin导入(import)文件限制的解决办法
php5 图片验证码实现代码
php smarty模版引擎中的缓存应用
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法
MYSQL 小技巧 -- LAST_INSERT_ID
PHP parse_url 一个好用的函数
php natsort内核函数浅析第1/2页
用PHP的ob_start() 控制您的浏览器cache
php array_map array_multisort 高效处理多维数组排序
php smarty的预保留变量总结
方便实用的PHP生成静态页面类(非smarty)第1/2页
smarty的保留变量问题
smarty section简介与用法分析