diff --git a/reference/errorfunc/functions/error-reporting.xml b/reference/errorfunc/functions/error-reporting.xml index e70b33c2ec..679778ebde 100644 --- a/reference/errorfunc/functions/error-reporting.xml +++ b/reference/errorfunc/functions/error-reporting.xml @@ -1,5 +1,5 @@ - + @@ -79,79 +79,92 @@ ini_set ('error_reporting', E_ALL); 1 - E_ERROR + E_ERROR 2 - E_WARNING + E_WARNING 4 - E_PARSE + E_PARSE 8 - E_NOTICE + E_NOTICE 16 - E_CORE_ERROR + E_CORE_ERROR 32 - E_CORE_WARNING + E_CORE_WARNING 64 - E_COMPILE_ERROR + E_COMPILE_ERROR 128 - E_COMPILE_WARNING + E_COMPILE_WARNING 256 - E_USER_ERROR + E_USER_ERROR 512 - E_USER_WARNING + E_USER_WARNING 1024 - E_USER_NOTICE + E_USER_NOTICE - - 2047 - - E_ALL - - + + 2048 + + E_STRICT + + + + 4096 + + E_ALL + + + + + With PHP > 5.0.0 E_STRICT with value 2048 is + introduced. Therefore the value for E_ALL changed + to 4096. + + See also the display_errors directive and ini_set.