如何配置php / apache2来显示异常但不显示堆栈跟踪?

时间:2013-03-20 17:26:05

标签: php exception configuration apache2

显示异常但不是完整堆栈跟踪需要什么错误报告组合?

即:

throw new Exception("This is an exception");

显示“这是一个例外”但不是后面的完整跟踪?

1 个答案:

答案 0 :(得分:0)

使用set_exception_handler创建自己的异常处理程序,该处理程序仅显示错误消息

例如:

set_exception_handler(
    function($e) {
        echo $e->getMessage();
        //exit(); dont have to be called
    }
);