因为我在PHP代码中发送头文件,所以我收到了更多的错误(发送内容是不可能的).
现在我想将错误信息添加到页面的末尾.在那里我想显示发生的所有错误(直到那时).不幸的是,error_get_last只返回发生的最后一个错误.
我第一次认为set_error_handler可能会解决问题,但我担心我的错误记录不再工作了:
It is important to remember that the standard PHP error handler is completely bypassed for the error types specified by error_types unless the callback function returns FALSE.
除此之外:
The following error types cannot be handled with a user defined function: E_ERROR,E_PARSE,E_CORE_ERROR,E_CORE_WARNING,E_COMPILE_ERROR,E_COMPILE_WARNING,and most of E_STRICT raised in the file where set_error_handler() is called.
但也许他们也不可用在error_get_last()
@H_403_21@错误处理仍然可以工作,只要:
callback function returns FALSE
function myErrorHandler($error_level,$error_message,$error_file,$error_line,$error_context) { // Do your stuff here,e.g. saving messages to an array // Tell PHP to also run its error handler return false; }
存储所有错误号码的一个解决方案(在外部数组$error_list中)可以是:
$error_list = array(); $myErrorHandler = function ($error_level,$error_context) use (&$error_list) { $error_list[] = $error_level; // Tell PHP to also run its error handler return false; }; // Set your own error handler $old_error_handler = set_error_handler($myErrorHandler);
另一种方法是使用例外.在function set_error_handler()的评论中有一个很好的例子
另见:
> Are global variables in PHP considered bad practice? If so,why?
> PHP: Callback function using variables calculated outside of it
提到你的第二个关注:
作为蛋已经提到:使用register_shutdown_function()是一种方式,答案https://stackoverflow.com/a/7313887/771077中的代码显示如何.
但请记住
注册关机和错误处理函数应该是代码中的第一件事(我愚弄了一个配置文件中的错误,由于我之后注册了错误处理程序,因此处理不正确).
>解析错误可能无法正确处理(请参阅https://stackoverflow.com/a/7313887/771077中的注释)