thinkphp5 修改全局异常处理方式

// 异常处理handle类 留空使用\think\exception\Handle

'exception_handle'      => '', 

默认是\think\exception\Handle 是框架默认的处理方式

要修改默认的显示方式,定义一个类继承\think\exception\Handle,重写render()方法,然后修改配置文件

'exception_handle'      => '命名空间\类名称', (app\lib\exception\ExceptionHandler)

你可能感兴趣的:(thinkphp5 修改全局异常处理方式)