From f40751d8324f2b906db5c0c597d55a4c04832c2c Mon Sep 17 00:00:00 2001 From: Boris Bezrukov Date: Mon, 24 May 2004 13:34:23 +0000 Subject: [PATCH] Error Reporting section added git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@159505 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/migration5.xml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/appendices/migration5.xml b/appendices/migration5.xml index 9c97358b33..7b38e76a5b 100755 --- a/appendices/migration5.xml +++ b/appendices/migration5.xml @@ -1,5 +1,5 @@ - + Migrating from PHP 4 to PHP 5 @@ -1668,6 +1668,22 @@ reflection_extension::export('standard'); +
+ Error Reporting + + As of &php; 5 new error reporting constant E_STRICT was introduced with + value 2048. It enables run-time PHP suggestions on your code + interoperability and forward compatibility, that will help you to keep + latest and greatest suggested method of coding. E.g. STRICT message will + warn you on using deprecated functions. + + + + E_ALL does not include E_STRICT so it's not enabled by default + + +
+