PHP error_reporting() 函数

Posted 可我浪费着我寒冷的年华

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP error_reporting() 函数相关的知识,希望对你有一定的参考价值。

实例

规定不同的错误级别报告:

<?php
 // 关闭错误报告
 error_reporting(0);

 // 报告 runtime 错误
 error_reporting(E_ERROR | E_WARNING | E_PARSE);

 // 报告所有错误
 error_reporting(E_ALL);

 // 等同 error_reporting(E_ALL);
 ini_set("error_reporting", E_ALL);

 // 报告 E_NOTICE 之外的所有错误
 error_reporting(E_ALL & ~E_NOTICE);
?> 

 

以上是关于PHP error_reporting() 函数的主要内容,如果未能解决你的问题,请参考以下文章

PHP中 error_reporting 这个函数有什么作用?

PHP error_reporting() 错误控制函数功能详解

PHP error_reporting() 错误控制函数功能详解

error_reporting函数引起的error_log配置失效的问题

error_reporting - PHP

PHP php error_reporting