Skip to content

Instantly share code, notes, and snippets.

@Mezzle
Last active August 29, 2015 14:21
Show Gist options
  • Save Mezzle/7366710cbb02306a474a to your computer and use it in GitHub Desktop.
Save Mezzle/7366710cbb02306a474a to your computer and use it in GitHub Desktop.
Catch Catchable Fatal errors and throw
<?php
set_error_handler(function($errno, $errstr, $errfile = null, $errline =0 , array $errcontext=[]) {
debug_backtrace();
die();
}, E_RECOVERABLE_ERROR);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment