使用error_reporting和ini_set(Apache 2.2中的PHP模块)时未显示PHP错误

时间:2014-11-14 12:19:09

标签: php apache error-handling

我正在尝试使用error_reporting()来显示我的php脚本中的所有错误

error_reporting(E_ALL); 
error_reporting(-1); 
ini_set('error_reporting', E_ALL);

但是,正确记录php错误时,上述所有函数均未显示页面中的错误。

我知道错误报告可以在php.ini文件中正确设置(我知道如何),但我不明白为什么它不能使用标准的php函数动态更改。

我怀疑Apache没有授权这样做(php作为模块安装,配置文件在/etc/php5/apache2/php.ini中)

感谢您的帮助

0 个答案:

没有答案