http://club.phpe.net/index.php?act=ST&f=15&t=11091&hl=&s=
bennybi给偶的回复:
cache是用来放生成的静态页面,可通过以下方式使用:
... //变量声明
$smarty1->caching = 2; // 2, lifetime is per cache , 0, no caching
$smarty1->cache_lifetime = 360;
if(!$smarty1->is_cached($APP_SYS_PARAM_CFG['SITE_FORE'].'/index.html')){
... //模板变量声明
}
/*-----------显示模板-----------------------*/
$smarty1->display($APP_SYS_PARAM_CFG['SITE_FORE'].'/index.html');
说明:
1. $APP_SYS_PARAM_CFG['SITE_FORE']是前台模板路径;
2. 在缓存时间之内,访问主页时,模板引擎会调用之前在cache/里生成的静态页面