fastd / debug
error handle component.
Installs: 2 202
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: >=7.0
- maximebf/debugbar: ^1.12
- monolog/monolog: *
Requires (Dev)
- fastd/config: ~2.0.0@beta
- fastd/database: ~2.0.0@beta
- phpunit/phpunit: 5.0
This package is auto-updated.
Last update: 2024-10-13 13:48:23 UTC
README
支持自定义错误页面,自定义响应格式,响应头,支持 fatal error 捕捉,日志纪录等功能。
要求
- PHP 7+
Composer
{ "fastd/debug": "2.0.x-dev" }
使用
use FastD\Debug\Debug; Debug::enable(); trigger_error('demo');
日志使用 Monolog\Logger
, 完全自定义 Monolog\Logger
日志,直接注入到 FastD/Debug
对象中即可
$logger = new \Monolog\Logger('test'); $stream = new \Monolog\Handler\StreamHandler(__DIR__ . '/test.log'); $stream->setFormatter(new Monolog\Formatter\LineFormatter("[%datetime%] >> %level_name%: >> %message% >> %context% >> %extra%\n")); $logger->pushHandler($stream); $debug = \FastD\Debug\Debug::enable(false, $logger); throw new \Exception('test');
自定义错误页面内容
\FastD\Debug\Debug::enable(); class PageException extends \FastD\Debug\Exceptions\HttpException { /** * Returns response content. * * @return string */ public function getContent() { return file_get_contents(__DIR__ . '/demo.html'); } } throw new PageException('custom');
自定义错误页面使用自定义异常类一样的做法,可以更加灵活处理。
自定义异常
自定义异常只需要继承 FastD\Debug\Exceptions\Http\HttpException
对象,对类中的 getStatusCode
, getHeaders
, getContent
三个方法重写即可
可参考例子:
自定义响应格式: json.php 自定义页面: page.php
Testing
phpunit