我正在尝试用自定义替换内置的 php shutdown_function。
它工作得很好,但是,它仍然在我的新错误消息上方输出原始错误(内置错误)。
<?php
function shutdown_output() {
$error = error_get_last();
if($error !== NULL) {
echo "ERROR";
exit();
} else {
echo "NO ERROR";
}
}
// Set the error reporting:
register_shutdown_function('shutdown_output');
// test.php does not exist, just here to get a critical error
require_once("test.php");
?>
有任何想法吗?