PHP Error
Join the DZone community and get the full member experience.
Join For FreeError handling is an important part of creating web applications and espesially in drupal development. There are three different error handling methods:
* Simple "die()" statements
* Custom errors and error triggers
* Error reporting
It’s quite simple to create a custom error handler. Just create a special function that can be called when an error occurs in PHP.
error_function(error_level,error_message,
error_file,error_line,error_context)
A function to handle errors is shown below:
function customError($errno, $errstr)
{
echo "Error: [$errno] $errstr
";
echo "Ending Script";
die();
}
PHP
Opinions expressed by DZone contributors are their own.
Comments