Download the PHP package primal/errorhandler without Composer
On this page you can find all versions of the php package primal/errorhandler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download primal/errorhandler
More information about primal/errorhandler
Files in primal/errorhandler
Download primal/errorhandler
More information about primal/errorhandler
Files in primal/errorhandler
Vendor primal
Package errorhandler
Short Description Quick trigger class for handling all errors and exceptions internally. Defaults to outputting as JSON data
License MIT
Homepage http://github.com/PrimalPHP/ErrorHandler
Package errorhandler
Short Description Quick trigger class for handling all errors and exceptions internally. Defaults to outputting as JSON data
License MIT
Homepage http://github.com/PrimalPHP/ErrorHandler
Please rate this library. Is it a good library?
Informations about the package errorhandler
ErrorHandler
Simple to use class for catching all uncaught errors for processing. By default the class outputs the error as JSON, but that behavior can be overridden with a custom callback. Designed to help with error reporting when building APIs, but useful in generic application settings as well. Handles Exceptions, Runtime Errors and Fatal Errors
Usage
//defaults to outputting errors as application/json
\Primal\ErrorHandler::Init();
//override with a custom callback to write to a log file
\Primal\ErrorHandler::Init(function ($error) {
error_log(json_encode($error), 0, '/path/to/error/log');
});
All versions of errorhandler with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.10
The package primal/errorhandler contains the following files
Loading the files please wait ....