From c6ae99a4641719f5232c5189ced908084c952bd5 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Sun, 14 Jul 2002 20:06:55 +0000 Subject: [PATCH] * Removed constant description table, see error handling section (and php.ini). * May use named constants too * For runtime, see error_reporting(). * See also display_errors directive * Default does not show E_NOTICE, you may want to show them during development git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88686 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 47 ++++++++++++--------------------------------- 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/chapters/config.xml b/chapters/config.xml index adf87650a1..59a2f43d05 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Configuration @@ -356,40 +356,17 @@ include_path = ".;c:\php\lib" - Set the error reporting level. The parameter is an integer - representing a bit field. Add the values of the error - reporting levels you want. - - Error Reporting Levels - - - - bit value - enabled reporting - - - - - 1 - normal errors - - - 2 - normal warnings - - - 4 - parser errors - - - 8 - non-critical style-related warnings - - - -
- The default value for this directive is 7 (normal errors, - normal warnings and parser errors are shown). + Set the error reporting level. The parameter is either an integer + representing a bit field, or named constants. The error_reporting + levels and constants are described in the + Error Handling section + of the manual, and in &php.ini;. To set at runtime, use the + error_reporting function. See also the + display_errors directive. +
+ + The default value does not show E_NOTICE level + errors. You may want to show them during development.