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 寫入日志操作就可以了