探讨捕获php错误信息方法的详解
程序员文章站
2022-05-26 22:13:45
ps:1.捕获php语法错误2.严重错误
用正常的 set_error_handle无法捕获此两类错误,这是捕获此类错误的技巧复制代码 代码如下://test.php 页...
ps:
1.捕获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 写入日志操作就可以了
下一篇: 要吓死人啊