PHP 8.5.0 Alpha 1 available for testing

Voting

: min(six, five)?
(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