Voting

: five plus zero?
(Example: nine)

The Note You're Voting On

gernovich at ya dot ru
6 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