首页 > 代码库 > PHP error_reporting() 函数

PHP error_reporting() 函数

error_reporting() 设置 PHP 的报错级别并返回当前级别。

任意数目的以上选项都可以用“或”来连接(用 OR 或 |),这样可以报告所有需要的各级别错误。例如,下面的代码关闭了用户自定义的错误和警告,执行了某些操作,然后恢复到原始的报错级别:

:如下例

<?php//禁用错误报告error_reporting(0);//报告运行时错误error_reporting(E_ERROR | E_WARNING | E_PARSE);//报告所有错误error_reporting(E_ALL);?>


PHP error_reporting() 函数