时间:2021-07-01 10:21:17 帮助过:7人阅读
$smarty = new Smarty;
$smarty->force_compile = true;
$smarty->debugging = true;
$smarty->caching = true;
$smarty->cache_lifetime = 120;
if(!$smarty->isCached('index.tpl')){
echo 'no cache';
} else {
echo 'cache';
}
$smarty->display('index.tpl');
请教一下,为什么我这样设置每次都是 no cache.
在我的cache目录下己经生成了缓存文件。