Parse Error 的优先级应该高于 Fatal Error,Parse Error 是所有 PHP 异常中优先级最高的。请参见以下示例
<?php
error_reporting(E_ALL);
test()
//系统输出解析错误
?>
<?php
error_reporting(E_WARNING);
test()
//系统输出解析错误
?>
<?php
error_reporting(E_ERROR);
test()
//系统输出解析错误
?>
<?php
error_reporting(E_PARSE);
test()
//系统输出解析错误
?>