Voting

: max(three, two)?
(Example: nine)

The Note You're Voting On

forcemdt
11 years ago
Php >5.4

Creating a Custom Error Handler

set_error_handler("customError",E_ALL);
function customError($errno, $errstr)
{
echo "<b>Error:</b> [$errno] $errstr<br>";
echo "Ending Script";
die();
}

<< Back to user notes page

To Top