【文件属性】:
文件名称:PHP环境的错误捕获与调试PHP的类库.zip
文件大小:66KB
文件格式:ZIP
更新时间:2022-07-31 04:47:37
类库下载-PHP环境的错误捕获与调试PHP的类库
<?php
/**
* Whoops - php errors for cool kids
* @author Filipe Dobreira
*/
namespace Whoops;
use InvalidArgumentException;
use Whoops\Exception\ErrorException;
use Whoops\Exception\Inspector;
use Whoops\Handler\CallbackHandler;
use Whoops\Handler\Handler;
use Whoops\Handler\HandlerInterface;
use Whoops\Util\Misc;
use Whoops\Util\SystemFacade;
final class Run implements RunInterface
{
private $isRegistered;
private $allowQuit = true;
private $sendOutput = true;
/**
* @var integer|false
*/
private $sendHttpCode = 500;
/**
* @var HandlerInterface[]
*/
private $handlerStack = [];这是一款PHP环境的错误捕获与调试PHP的类库,需要的朋友可以直接下载使用
【文件预览】:
whoops-master
----src()
--------Whoops()
----LICENSE.md(1KB)
----CHANGELOG.md(479B)
----composer.json(1KB)