error_get_last()返回true-如何获取错误消息?

时间:2018-12-11 22:45:49

标签: error-handling php-7

我的代码:

ini_set('error_reporting', E_ERROR);
register_shutdown_function("fatal_handler");
function fatal_handler() {
    $error = error_get_last();
    echo("<pre>");
    print_r($error);
}

我得到<pre>true作为输出。查看PHP手册,它应该返回一个数组。由于得到的结果是<pre>true,所以我猜有一些错误,如何获得有关该错误的数据?

谢谢!

0 个答案:

没有答案