PHP - Error and Exception Handling
What is wrong with this error handler function?
function handler($errno, $errstr) {
echo "Error: $errstr";
return 1;
}
set_error_handler('handler');