12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- declare(strict_types=1);
- namespace App\Exception\Handler;
- use Hyperf\Contract\StdoutLoggerInterface;
- use Hyperf\ExceptionHandler\ExceptionHandler;
- use Hyperf\HttpMessage\Stream\SwooleStream;
- use Psr\Http\Message\ResponseInterface;
- use Throwable;
- /**
- * Create a new validation exception from a plain array of messages.
- *
- * @return static
- */
- class AppExceptionHandler extends ExceptionHandler
- {
- /**
- * Create a new validation exception from a plain array of messages.
- *
- * @return static
- */
- public function handle(Throwable $throwable, ResponseInterface $response)
- {
- // var_dump($throwable->getMessage());
- // 格式化输出
- $data = json_encode([
- 'code' => $throwable->getCode(),
- 'message' => $throwable->getMessage(),
- ], JSON_UNESCAPED_UNICODE);
- // 阻止异常冒泡
- $this->stopPropagation();
- return $response
- ->withAddedHeader('Content-Type', ' application/json; charset=UTF-8')
- ->withStatus(500)
- ->withBody(new SwooleStream($data));
- }
- public function isValid(Throwable $throwable): bool
- {
- return true;
- }
- }
|