出于某种原因,我无法让Smarty停止缓存模板,这在我在开发过程中对模板进行更改时非常烦人。有人可以告诉我在禁用所有缓存时我出错了吗?:
$smarty = new Smarty();
$smarty->template_dir = SMARTY_PATH."/templates";
$smarty->compile_dir = SMARTY_PATH."/templates_c";
$smarty->cache_dir = SMARTY_PATH."/cache";
$smarty->config_dir = SMARTY_PATH."/configs";
$smarty->cache_lifetime = 1;
$smarty->caching = 0;
答案 0 :(得分:9)
如果你想要智能检查,每次使用模板时,如果存在新版本(如果是这种情况,则重新编译它),那么你可能正在寻找$compile_check
选项。
在开发过程中,您可能也会对此感兴趣:$force_compile
(引用):
这迫使Smarty(重新)编译 每次调用都有模板。
答案 1 :(得分:0)
默认情况下:
var $force_compile = false; / public $force_compile = false;
将上述代码更改为:
var $force_compile = true; / public $force_compile = true;