From 00ccd41946d9d3e88a40c080728274964068ead4 Mon Sep 17 00:00:00 2001 From: Sherif Ramadan Date: Tue, 24 Jul 2012 06:04:11 +0000 Subject: [PATCH] Modified language to reflect that E_STRICT is now a part of E_ALL in PHP > 5.4.0 in error_reporting note, which fixes Bug #62645. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@326794 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/errorfunc/ini.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/errorfunc/ini.xml b/reference/errorfunc/ini.xml index 13f317fcf5..6c8b845e0a 100644 --- a/reference/errorfunc/ini.xml +++ b/reference/errorfunc/ini.xml @@ -164,9 +164,9 @@ In PHP 5 a new error level E_STRICT is available. - As E_STRICT is not included within - E_ALL you have to explicitly enable this kind of - error level. Enabling E_STRICT during development + Prior to PHP 5.4.0 E_STRICT was not included within + E_ALL, so you would have to explicitly enable this kind of + error level in PHP < 5.4.0. Enabling E_STRICT during development has some benefits. STRICT messages will help you to use the latest and greatest suggested method of coding, for example warn you about using deprecated functions.