PHP 오류를 잡는 방법은 다음과 같습니다. [try{ }catch(Exception $e){echo $e->getMessage();}] 문을 사용하여 오류를 잡을 수 있습니다.
오류를 잡는 일반적인 방법은 다음과 같습니다.
(학습 동영상 공유: java 비디오 튜토리얼)
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 training
위 내용은 PHP 오류를 잡는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!