- var_dump: documentation ( source)
- set_error_handler: documentation ( source)
<?php
set_error_handler(function (int $code, string $message, string $file, int $line) : never {
throw new ErrorException($message, $code, E_NOTICE, $file, $line);
}, ~0);
try {
$zero = 0 / 0;
} catch (Throwable $thrown) {
var_dump((string) $thorwn);
}
?>