diff options
author | Ondřej Surý <ondrej@sury.org> | 2012-05-28 16:52:15 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2012-05-28 16:52:15 +0200 |
commit | 01c525f668ecff08bea21c4ff22745b8f77e8c3a (patch) | |
tree | 07ebb675549d7a8ceb905676e4894151122321ac /UPGRADING | |
parent | d4d61a2bcb9975c8aeddbc6603211064174087a9 (diff) | |
download | php-01c525f668ecff08bea21c4ff22745b8f77e8c3a.tar.gz |
Imported Upstream version 5.4.4~rc1upstream/5.4.4_rc1
Diffstat (limited to 'UPGRADING')
-rwxr-xr-x | UPGRADING | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 ================================ @@ -332,6 +339,8 @@ PHP 5.4 UPGRADE NOTES - ob_start() no longer starts multiple output buffers when passed array("callback1", "callback2", "callback3", ...). +- Since 5.4.4, "php://fd" stream syntax is available only in CLI build. + ============================== 5. Changes to existing classes ============================== |