From 317e69d8a97c49eb0555ec94c1d4e814bd89e490 Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Mon, 1 Dec 2003 11:49:35 +0000 Subject: [PATCH] E_STRICT added linking constants to a more propper target git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@145289 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../errorfunc/functions/error-reporting.xml | 49 ++++++++++++------- 1 file changed, 31 insertions(+), 18 deletions(-) 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.