PHP code example of emgiezet / errbit-php

1. Go to this page and download the library: Download emgiezet/errbit-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

emgiezet / errbit-php example snippets

json
 ...
    "emgiezet/errbit-php": "1.*"
  }
json
 ...
    "emgiezet/errbit-php": "2.*"
  }
 php
use Errbit\Errbit;

Errbit::instance()
  ->configure(array(
    'api_key'           => 'YOUR API KEY',
    'host'              => 'YOUR ERRBIT HOST, OR api.airbrake.io FOR AIRBRAKE'
  ))
  ->start();
 php
set_error_handler();
set_exception_handler();
register_shutdown_function();
 php
set_error_handler();
register_shutdown_function();
 php
use Errbit\Errbit;
Errbit::instance()->start(array('error', 'fatal')); // using our own exception handler