php中,异常处理机制是有限的,无法自动抛出异常,必须手动进行,并且内置异常有限。
php把许多异常看作错误,这样就可以把这些异常想错误一样用set_error_handler接管,进而主动抛出异常。
比如以下warning类型的错误是捕获不到的 : Warning: Division by zero in
try{
$a = 5/0;
}catch (Exception $e){
echo '错误信息:',$e->getMessage();
}
使用set_error_handler来接管php错误处理,捕获异常和非致命错误
function customError($errno,$errstr,$errfile,$errline){
throw new Exception('错误行数'.$errline.'行|'.$errstr);
}
set_error_handler("customError",E_ALL); try{
$a = 5/0; //Warning: Division by zero in
}catch (Exception $e){
echo '错误信息:',$e->getMessage();
}
这个的应用场景一般存在于框架中的自定义错误处理机制,使得报错信息的体验更加一目了然。