PHP語法錯誤擷取處理
一般擷取錯誤使用的方法是:
try{ ... }catch(Exception $e){ echo $e->getMessage(); }
或
set_exception_handler(function ($exception) { echo $exception->getMessage(); });
範例:
<?php function test(){ throw new Exception('参数错误'); } try{ //如果catch没有捕获到,才会执行到这里 set_exception_handler(function ($exception) { echo $exception;//exception 'Exception' with message '参数错误' in /www/web/...(一堆信息) echo '<br>'; echo $exception->getMessage();//参数错误 }); test(); }catch(Exception $e){ echo $e->getMessage();//参数错误 }
set_exception_handler
— 設定使用者自訂的例外處理函數,用於沒有用try/catch 區塊來捕獲的例外。
推薦教學:PHP影片教學
#以上是php語法錯誤捕獲的詳細內容。更多資訊請關注PHP中文網其他相關文章!