summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2012-05-13 14:48:22 -0700
committerStanislav Malyshev <stas@php.net>2012-05-13 14:48:22 -0700
commita72b21438d053a04c94c6da866692d8db6252616 (patch)
tree5aca5626217458d34cdcd68d050ff6a6eb275677 /UPGRADING
parenta0dff6fdcae1f4eaa96e68d1429fd38876c2796e (diff)
downloadphp-git-a72b21438d053a04c94c6da866692d8db6252616.tar.gz
update NEWS/UPGRADING
Diffstat (limited to 'UPGRADING')
-rwxr-xr-xUPGRADING7
1 files changed, 7 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index d92e0573bc..391c3651ff 100755
--- a/UPGRADING
+++ b/UPGRADING
@@ -169,6 +169,10 @@ PHP 5.4 UPGRADE NOTES
non-numeric and produce warning, but are converted to 12 and 5
respectively for backwards compatibility reasons.
+- Long numeric strings that do not fit in integer or double (such as
+ "92233720368547758070") are compared using string comparison if
+ they could otherwise result in precision loss - since 5.4.4.
+
- Closures now support scopes and $this and can be rebound to
objects using Closure::bind() and Closure::bindTo().
@@ -178,6 +182,9 @@ PHP 5.4 UPGRADE NOTES
- Parse error messages are changed to contain more information about
the error.
+- __clone and __destruct since 5.4.4 follow the same scoping rules as
+ the rest of the methods (see bug #61782 for details).
+
================================
4. Changes to existing functions
================================