PHP捕捉致命错误
程序员文章站
2022-05-26 10:42:26
...
就是捕捉致命错误啦~ 无 ?phperror_reporting(0);function _rare_shutdown_catch_error(){ $_error=error_get_last(); if($_error in_array($_error['type'],array(1,4,16,64,256,4096,E_ALL))){ echo '致命错误:'.$_error['message'].'/br'; echo '文件:'.$_
就是捕捉致命错误啦~
'; echo '文件:'.$_error['file'].''; echo '在第'.$_error['line'].'行'; } } register_shutdown_function("_rare_shutdown_catch_error"); test();
推荐阅读
-
PHP错误提示It is not safe to rely on the system……的解决方法
-
PHP的全局错误处理详解
-
PHP常见错误提示含义解释(实用!值得收藏)
-
PHP中Restful api 错误提示返回值实现思路
-
PHP错误处理函数
-
PHP错误提示It is not safe to rely on the system……的解决方法
-
PHP错误机制知识汇总
-
实例讲解如何在PHP的Yii框架中进行错误和异常处理
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
PHP中把错误日志保存在系统日志中(Windows系统)