PS:
1.捕獲PHP語法錯(cuò)誤
2.嚴(yán)重錯(cuò)誤
用正常的 set_error_handle無法捕獲此兩類錯(cuò)誤,這是捕獲此類錯(cuò)誤的技巧
復(fù)制代碼 代碼如下:
//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
新聞熱點(diǎn)
疑難解答