thinkphp5 修改全局异常处理方式
2020-06-02 本文已影响0人
tangzhentian
// 异常处理handle类 留空使用\think\exception\Handle
'exception_handle' => '',
默认是\think\exception\Handle 是框架默认的处理方式
要修改默认的显示方式,定义一个类继承\think\exception\Handle,重写render()方法,然后修改配置文件
'exception_handle' => '命名空间\类名称', (app\lib\exception\ExceptionHandler)