探讨捕获php错误信息方法的详解

前端之家收集整理的这篇文章主要介绍了探讨捕获php错误信息方法的详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHP语法错误
2.严重错误

用正常的 set_error_handle无法捕获此两类错误,这是捕获此类错误的技巧

代码如下:
//test.PHP 页面
error_reporting(0);
register_shutdown_function('PageOnShutdown');
include('error_test.PHP');
function PageOnShutdown()
{
$msg = error_get_last();
print_r($msg);

}

//error_test.PHP 页面

$a = 1 + 2

$b


然后 输出 test.PHP 打印出
Array ( [type] => 4 [message] => parse error [file] => D:\web\tbc\error_test.PHP [line] => 5 )
再根据 获得 $msg 写入日志操作就可以了

原文链接:https://www.f2er.com/php/26350.html

猜你在找的PHP相关文章