找出被抑制的警告为何仍会抛出,以及后续测试为何会继承这项转换政策。
php
<?php
function withStrictWarnings(callable $operation): mixed
{
set_error_handler(
static function (int $severity, string $message, string $file, int $line): bool {
throw new ErrorException($message, 0, $severity, $file, $line);
},
);
return $operation();
}