Ai
1 Star 3 Fork 81

linuxof/fastadmin-tp6

forked from Ice/yfcmf-tp6 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ExceptionHandle.php 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
Ice 提交于 2020-07-10 10:18 +08:00 . 增加异常钩子
<?php
namespace app;
use Throwable;
use think\Response;
use think\exception\Handle;
use think\exception\HttpException;
use think\exception\ValidateException;
use think\exception\HttpResponseException;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
/**
* 应用异常处理类.
*/
class ExceptionHandle extends Handle
{
/**
* 不需要记录信息(日志)的异常类列表.
*
* @var array
*/
protected $ignoreReport = [
HttpException::class,
HttpResponseException::class,
ModelNotFoundException::class,
DataNotFoundException::class,
ValidateException::class,
];
/**
* 记录异常信息(包括日志或者其它方式记录).
*
* @param Throwable $exception
*
* @return void
*/
public function report(Throwable $exception): void
{
hook('app_exception_report', ['exception'=>$exception,'ignoreReport'=>$this->ignoreReport]);
// 使用内置的方式记录异常日志
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
* @param \think\Request $request
* @param Throwable $e
*
* @return Response
*/
public function render($request, Throwable $e): Response
{
hook('app_exception', $e);
// 添加自定义异常处理机制
// 其他错误交给系统处理
return parent::render($request, $e);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/linuxof/fastadmin-tp6.git
git@gitee.com:linuxof/fastadmin-tp6.git
linuxof
fastadmin-tp6
fastadmin-tp6
master

搜索帮助