Skip to content

Instantly share code, notes, and snippets.

@jayzeng
Created March 5, 2013 06:34
Show Gist options
  • Save jayzeng/5088451 to your computer and use it in GitHub Desktop.
Save jayzeng/5088451 to your computer and use it in GitHub Desktop.
fatal error
<?php
// Log down all fatal error
register_shutdown_function( function() {
$lastError = error_get_last();
if( count($lastError) > 0 ) {
Logger::log('Fatal error', implode(',', $lastError));
}
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment