spencer-mortensen/exceptions
Composer 安装命令:
composer require spencer-mortensen/exceptions
包简介
Catch fatal errors and warnings that would otherwise be difficult to handle
关键字:
README 文档
README
This project is available as a Composer Package:
spencer-mortensen/exceptions
Overview
Error handling in PHP is complicated, but this library makes it bullet-proof:
Create a method to handle exceptions (e.g. $handler->handle($throwable);) and you're good to go!
This library converts all PHP notices, warnings, and errors into exceptions, so you can handle them. It also works on any thrown exceptions that make it up to the global scope. It even catches most of the fatal errors, which would otherwise be impossible to handle.
Usage
Example 1. Enable error handling for the entire program:
new ErrorHandling($errorHandler, E_ALL);
Example 2. Enable error handling ONLY for your portion of the code:
try { ErrorHandling::on(); ... } finally { ErrorHandling::off(); }
This converts PHP notices, warnings, and errors into catchable exceptions, but only for the duration of the try/catch block.
Example 3. Show the built-in PHP STDERR messages, so you can see errors while you're working on your error handler. If you're working on your error handler, and you're getting a blank screen, use this:
new ErrorHandling($errorHandler, E_ALL, false);
When you're finished, set everything back to normal:
new ErrorHandling($errorHandler, E_ALL);
See the example area for working code and ideas.
spencer-mortensen/exceptions 适用场景与选型建议
spencer-mortensen/exceptions 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 41.16k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 01 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「exceptions」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 spencer-mortensen/exceptions 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 spencer-mortensen/exceptions 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 spencer-mortensen/exceptions 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
php7ify is a project that brings new php7 classes and exceptions to php 5.x.
The CodenamePHP Platform core that contains basic interfaces, exceptions etc..
A simple package to better handle Exceptions.
Monitors errors and exceptions and reports them to Rollbar
Creates & updates issues on a GitLab repository from Symfony2 exceptions
Exception monitoring and debug email channel for Filament.
统计信息
- 总下载量: 41.16k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 20
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2018-01-01