Skip to content

Instantly share code, notes, and snippets.

@jayzeng
Created January 23, 2013 08:31
Show Gist options
  • Save jayzeng/4603157 to your computer and use it in GitHub Desktop.
Save jayzeng/4603157 to your computer and use it in GitHub Desktop.
global error handler
<?php
// custom error handler to suppress errors
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
return '';
}
set_error_handler('exception_error_handler');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment