//定义一个时间来测试insert与普通assign的差别
$date = date("Y-m-d H:i:s");
$smarty->assign("date", $date);
//insert
function insert_get_current_time($date){
return date("Y-m-d H:i:s");
}
index.tpl
复制代码 代码如下:
nocache:{insert}
cache: {$date}
[code]
然后看生成的缓存文件:得出结论 insert 每次调用该模板都会重新执行该函数
nocache:<?php echo insert_get_current_time(array (
),$_smarty_tpl);?>
cache: 2012-06-04 15:46:52
复制代码 代码如下:
这种方法简单,但是如果要显示的内容是一大块的,就不宜使用了。
二、动态block 法
php中自定义块
index.php
[code]
//smarty 3
// function declaration
function smarty_block_nocache ($param,$content,$smarty)
{
return $content;
}
// register with smarty
$smarty->registerPlugin("function","nocache", "smarty_block_nocache");
开始有提到过,Smarty3是用registerPlugin , Smarty2则是用register_block
index.tpl
{nocache}{$date}{/nocache}
然后看缓存文件 , 得出结论每次调用该模板都会重新执行$date
[/code]
<?php echo $_smarty_tpl->tpl_vars['date']->value;?>
复制代码 代码如下:
三、插件block 法
这个方法和第2个差不多,只是把php中的自定义块,放到smarty目录中的plugins文件夹中。
在Smarty/plugins目录下建一个文件 block.nocache.php 内容如下:
<?php
function smarty_block_nocache($param, $content, $smarty)
{
return $content;
}
?>
[code]
tpl模板中的使用和第二个方法一样
总结
可以总结出Smarty缓存技术,能大大的提高网站的速度和质量,用法也比较简单。
最后提醒一下的就是, Smarty生成的缓存文件的扩展名虽然是php,但并不会被当作php代码来解析.
作者:那瞬间
您可能感兴趣的文章: