Is there any way to revert to PHP’s native/normal error handling after setting up a custom error handler? (see http://www.php.net/manual/en/function.set-error-handler.php ) set_error_handler(“myErrorHandler”); …
Read the original here:
Reverting to PHP Error Handling after using set_error_handler()?