php中设定一个全局异常处理。全局catch。默认catch。默认异常处理

 <?php

     function handleMissedException($e) {
echo "Sorry, something is wrong. Please try again, or contact us if the problem persists. Thanks!";
//error_log($str);//保存一条错误信息字符串到web服务器的error_log文档里。
error_log('Unhandled Exception:' . $e->getMessage() . 'in file' . $e->getFile() . 'on line' . $e->getLine());
} set_exception_handler('handleMissedException'); //测试抛出一个错误。
throw new Exception('just testing'); //整个测试程序就这么多。
//上下文都没有catch。所以会触发 handleMissedExceotion($e)函数, $e为Exception或Exception的子类

error_log存在web服务器的error_log里。

例如:apache可以在配置文件httpd.conf中搜error_log找到它的位置。

上一篇:在 WinForm 中 如何实现 加载等待功能


下一篇:Unity的使用