Created
December 31, 2011 04:26
-
-
Save cspray/1542873 to your computer and use it in GitHub Desktop.
PHP Error Handling Closure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// A closure to store error information in an array | |
$errors = array(); | |
$errorCallback = function($severity, $message, $file = null, $line = null, $context = null) use (&$errors) { | |
$normalizeSeverity = function() use ($severity) { | |
$severityMap = array( | |
E_WARNING => 'E_WARNING', | |
E_NOTICE => 'E_NOTICE', | |
E_USER_ERROR => 'E_USER_ERROR', | |
E_USER_WARNING => 'E_USER_WARNING', | |
E_USER_NOTICE => 'E_USER_NOTICE', | |
E_USER_DEPRECATED => 'E_USER_DEPRECATED', | |
E_RECOVERABLE_ERROR => 'E_RECOVERABLE_ERROR', | |
E_DEPRECATED => 'E_DEPRECATED' | |
); | |
if (\array_key_exists($severity, $severityMap)) { | |
return $severityMap[$severity]; | |
} | |
return 'E_UNKOWN_SEVERITY'; | |
}; | |
$index = \count($errors); | |
$errors[$index]['severity'] = $normalizeSeverity(); | |
$errors[$index]['message'] = $message; | |
$errors[$index]['file'] = $file; | |
$errors[$index]['line'] = $line; | |
// here to return an error if improper type hints are passed | |
$unhandledSeverity = array(E_RECOVERABLE_ERROR); | |
if (\in_array($severity, $unhandledSeverity)) { | |
return false; | |
} | |
}; | |
\set_error_handler($errorCallback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment