PHP 8.5.0 Beta 2 available for testing

Voting

: max(eight, one)?
(Example: nine)

The Note You're Voting On

gernovich at ya dot ru
8 months ago
Show all error handlers:
<?php
do {
$handler = set_error_handler(fn()=>false);
if(
$handler !== null) {
var_dump($handler);
restore_error_handler();
restore_error_handler();
}
} while (
$handler !== null);
?>

<< Back to user notes page

To Top