smarty模板强制编译_翔宇的博客-CSDN博客

来源: smarty模板强制编译_翔宇的博客-CSDN博客

开发过程中碰到一个奇怪的现象,每次写完模板之后总是没有更新,一番搜索之后发现是smarty的缓存,并且项目的smarty配置被人修改过,囧。

参考这篇文章,解释下其中这两个参数:

/**
* force template compiling?
* @var boolean
*/
public $force_compile = false;
/**
* check template for modifications?
* @var boolean
*/
public $compile_check = true;
/**
* use sub dirs for compiled/cached files?
* @var boolean
*/

上面是smarty的默认配置
– $force_compile为true时每次用户访问页面都会重新编译模板,应设为false,减少io
– $compile_check为true时smarty会检查模板文件的变更,有变更会重新编译,应设为true

被人设置为false false了 =。= ,改回来就可以了

赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏