使用error_reporting禁用报告所有错误

时间:2014-04-18 09:28:05

标签: php debugging error-handling

使用

是否可以接受
error_reporting(0);

禁用任何类型的错误报告(用于制作)?

2 个答案:

答案 0 :(得分:2)

这绝对有效:请参阅下面的error_reporting列表:

<?php

// Turn off all error reporting
error_reporting(0);

// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);

// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);

// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL ^ E_NOTICE);

// Report all PHP errors (see changelog)
error_reporting(E_ALL);

// Report all PHP errors
error_reporting(-1);

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

?>

答案 1 :(得分:1)

您应该有错误报告,以便调试生产服务器上的任何问题。

为防止用户看到错误,只需停止显示错误:

ini_set("display_errors", 0);