解析错误的优先级应该高于致命错误,解析错误在所有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()
//系统输出解析错误
?>