我无法在共享主机中禁用缓存。当我设置
$f3->set('DEBUG', 3);
$f3->set('LOCALES', 'lang/');
$f3->set('AUTOLOAD', 'app/controllers/');
$f3->set('UI', 'app/views/');
$f3->set('CACHE', FALSE);
$f3->clear('CACHE');
$cache->reset();
缓存仍在工作,我无法正常调试
答案 0 :(得分:1)
感谢它归功于Zend OPcache
模块。我只需要将
php_flag opcache.enable Off
插入.htaccess
文件