开发过程中碰到一个奇怪的现象,每次写完模板之后总是没有更新,一番搜索之后发现是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了 =。= ,改回来就可以了