最新的Web开发教程
 

PHP error_reporting() Function

<PHP误差基准

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

<?php
// Turn off error reporting
error_reporting(0);

// Report runtime errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);

// Report all errors
error_reporting(E_ALL);

// Same as error_reporting(E_ALL);
ini_set("error_reporting", E_ALL);

// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
?>


定义和用法

error_reporting()函数指定其报告的错误。

PHP有错误的层次多,使用此功能将针对当前的脚本水平。


句法

error_reporting( level ) ;

参数 描述
level 可选的。 指定当前脚本错误报告的水平。 错误编号和命名常量被接受。 注:建议命名常量,以确保未来的PHP版本兼容

技术细节

返回值: 如果没有等级参数给出返回旧的错误报告级别或当前错误报告级别
PHP版本: 4.0+

<PHP误差基准