前言
Smarty 是一个出色的PHP模板引擎,它分离了逻辑代码和user interface。
学习和使用Smarty,没有应用到它的缓存技术是一个很大的损失,它可以将用户最终看到的HMTL文件缓存成一个静态的HTML页,当设定Smarty的cache属性为true时,在Smarty设定的cachetime期内将用户的WEB请求直接转换到这个静态的HTML文件中来,这相当于调用一个静态的HTML文件,给后台服务器减少很多负担。
下载与配置
官方下载:Smarty Download
下载完后,解压到自己项目的文件目录下。
复制代码 代码如下:
require('../libs/Smarty.class.php');
$smarty = new Smarty;
//$smarty->force_compile = true; //强迫编译
$smarty->debugging = true; //调试
$smarty->caching = true; //开启缓存
$smarty->cache_lifetime = 120; //缓存存活时间(秒)
$smarty->cache_dir = MY_SMARTY_DIR . '/cache/' ; //设置缓存的存放路径
复制代码 代码如下:
$smarty->caching = true; //开启缓存
$smarty->cache_lifetime = 120; //缓存存活时间(秒)
复制代码 代码如下:
//$_SERVER['REQUEST_URI']方法
//将当前页面的URL(包含?后面的所有参数)进行md5加密
$url=md5($_SERVER['REQUEST_URI']);
//设置缓存文件名
$smarty->display('index.tpl',$url);
复制代码 代码如下:
if(!$smarty->isCached('index.tpl')){
echo "ACACHE NO FOUND!";
$sql = "SELECT * FROM test";
$query = mysql_query($sql);
$row = mysql_fetch_row($query);
$smarty->assign("loaddatabase",$row[1]);
}
复制代码 代码如下:
//定义一个时间来测试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");
}
复制代码 代码如下:
nocache:{insert name="get_current_time"}
cache: {$date}
[code]
然后看生成的缓存文件:得出结论 insert 每次调用该模板都会重新执行该函数
复制代码 代码如下:
这种方法简单,但是如果要显示的内容是一大块的,就不宜使用了。
二、动态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");
复制代码 代码如下:
三、插件block 法
这个方法和第2个差不多,只是把php中的自定义块,放到smarty目录中的plugins文件夹中。
在Smarty/plugins目录下建一个文件 block.nocache.php 内容如下: