我有WAMP和php 5.4.12,我想报告错误。
我的php.ini
包含以下内容:
; Common Values:
; E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)
; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices)
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.)
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
; http://php.net/error-reporting
error_reporting = E_ALL
但没有显示任何错误。
error_reporting
应该采用什么值?如何检索报告的错误?
答案 0 :(得分:3)
我猜你的php.ini中已关闭display_errors
。请尝试以下方法(在您正在处理的php文件中)。
ini_set('display_errors' , 'On');
error_reporting(E_ALL);
要从php.ini设置标志,请找到display_errors
的位置,并将值更改为On
。如果这不起作用,请发布完整的php.ini。
答案 1 :(得分:0)
您可以检查您尝试运行的php脚本(将覆盖php ini标志)以及.htaccess文件中是否有任何错误报告标志。这是覆盖php .ini标志的两个选项。