Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 628 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 628 Bytes

BrqErrorHandler

PHP ErrorHandler

author


BrqErrorHandler screenshot

BrqErrorHandler is an error handler class for PHP. provides a pretty error interface that helps you debug your project.

Installing

  1. Download Or Clone this repo to your project folder.

  2. Register the handler in your code:

    // hide php errors
    ini_set('display_errors', 0);
    
    // include BrqErrorHandler
    require_once "BrqErrorHandler/ErrorHandler.php";
    
    // init
    new ErrorHandler;