php-一个smary的简单问题哦
程序员文章站
2022-05-19 13:37:49
...
phpsmarty
$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目录下己经生成了缓存文件。
上一篇: 网站map是什么