From: Hannes Magnusson Date: Sat, 9 Sep 2006 21:43:11 +0000 (+0000) Subject: Add E_RECOVERABLE X-Git-Tag: php-5.2.0RC4~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c5119c5a9087fb8c1cf584fab06667d9e522d85;p=php Add E_RECOVERABLE --- diff --git a/php.ini-dist b/php.ini-dist index 8a4045dc43..264d828006 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -264,6 +264,7 @@ memory_limit = 16M ; Maximum amount of memory a script may consume (16MB) ; reporting level ; E_ALL - All errors and warnings (doesn't include E_STRICT) ; E_ERROR - fatal run-time errors +; E_RECOVERABLE_ERROR - almost fatal run-time errors ; E_WARNING - run-time warnings (non-fatal errors) ; E_PARSE - compile-time parse errors ; E_NOTICE - run-time notices (these are warnings which often result @@ -295,7 +296,7 @@ memory_limit = 16M ; Maximum amount of memory a script may consume (16MB) ; ; - Show only errors ; -;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR +;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR ; ; - Show all errors except for notices and coding standards warnings ; diff --git a/php.ini-recommended b/php.ini-recommended index 379019e403..deed67178d 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -322,6 +322,7 @@ memory_limit = 16M ; Maximum amount of memory a script may consume (16MB) ; reporting level ; E_ALL - All errors and warnings (doesn't include E_STRICT) ; E_ERROR - fatal run-time errors +; E_RECOVERABLE_ERROR - almost fatal run-time errors ; E_WARNING - run-time warnings (non-fatal errors) ; E_PARSE - compile-time parse errors ; E_NOTICE - run-time notices (these are warnings which often result @@ -353,7 +354,7 @@ memory_limit = 16M ; Maximum amount of memory a script may consume (16MB) ; ; - Show only errors ; -;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR +;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR ; ; - Show all errors, except coding standards warnings ;