Fatal Error";
die("A fatal error has occured at line $error_line of file
$error_file.
Error message created was "$error_message"");
break;
//warnings
case E_WARNING:
echo "
Warning
";
echo "A warning has occured at line $error_line of file
$error_file.
";
echo " Error message created was "$error_message"";
//notices
case E_NOTICE:
//don't show notice errors
break;
}
}
//set the error handler to be used
set_error_handler("handler");
//set string with "Wrox" spelled wrong
$string_variable = "Worx books are great!";
//try to use str_replace to replace Worx with Wrox
//this will generate an E_WARNING
//because of wrong parameter count
str_replace("Worx", "Wrox");
?>