每当我导致解析错误时,我都会收到WSOD。我知道有很多类似的问题,但我已经尝试了所有这些建议而没有运气 在OS X Lion上的Apache 2上运行PHP 5.3.6。
这是php -i | grep error
的输出:
display_errors => STDOUT => STDOUT
display_startup_errors => On => On
error_append_string => no value => no value
error_log => php_errors.log => php_errors.log
error_prepend_string => no value => no value
error_reporting => 32767 => 32767
html_errors => Off => Off
ignore_repeated_errors => Off => Off
log_errors => On => On
log_errors_max_len => 1024 => 1024
track_errors => Off => Off
xmlrpc_error_number => 0 => 0
xmlrpc_errors => Off => Off
error_reporting上的32767
对应E_ALL | E_STRICT
发生这种情况时,错误甚至不会显示在日志中。 (有时会出现在apache日志中)。
有什么想法吗?