php错误处理
程序员文章站
2024-04-04 20:45:41
...
php异常处理
--------------------------------
一定要定义和调用
set_error_handler("onError");
set_exception_handler("onException");
否则 进不去catch(){}里面去的
function onError($errCode, $errMesg, $errFile, $errLine) { echo "Error Occurred\n"; throw new Exception($errMesg); } function onException($e) { echo $e->getMessage(); } set_error_handler("onError"); set_exception_handler("onException"); try { $mm=0/0; echo $mm; } catch (Exception $e) { echo $e->getCode()."\n"; echo $e->getMessage()."\n"; }
--------------------------------
一定要定义和调用
set_error_handler("onError");
set_exception_handler("onException");
否则 进不去catch(){}里面去的
相关文章
相关视频