Hindi Songs

Wednesday, July 8, 2009

Example

Testing the error handler by trying to output variable that does not exist:

< ?php
//error handler function
function customError($errno, $errstr)
{
echo "Error: [$errno] $errstr";
}

//set error handler
set_error_handler("customError");

//trigger error
echo($test);
? >

The output of the code above should be something like this:

Error: [8] Undefined variable: test