在将我的 Xubuntu 从 13.04 升级到 13.10 后,我遇到了 Smarty 和 PHP 的问题错误。
基本上,Smarty 模板在我编辑模板后会延迟 5-7 秒重新编译。
我将系统时间 ( date
) 与 PHP 的时间进行了比较,date(...)
并且时间戳是相等的。
PHP Version 5.5.3-1ubuntu2
如何解决?
示例代码:
require_once 'classes/Smarty-3.1.8/libs/Smarty.class.php';
$tpl = new Smarty();
// if I edit this template, changes shows up after
// 3-4 seconds which is very annoying
// there was no issue in xubuntu 13.04 / older php version!
$tpl->display('test.tpl');
编辑:
我仔细检查了filemtime
它是否正常工作。