x_mier/think-whoops

为酷孩子们提供的php错误处理

维护者

详细信息

gitee.com/x_mier/think-whoops

安装: 33

依赖: 0

建议者: 0

安全: 0

v1.1 2021-01-13 13:44 UTC

This package is not auto-updated.

Last update: 2024-09-20 05:39:26 UTC


README

使用方法: // Whoops 控制请求异常

$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler());
return Response::create(
    $whoops->handleException($e),
    'html',
    500
);