summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-12-14 23:49:24 -0800
committerStanislav Malyshev <stas@php.net>2014-12-14 23:49:43 -0800
commit33b0349ed880a6724df6fb962b07c9ad6bb14126 (patch)
treec30b83d4c74800a9192cdd03829500b01ec0e0aa
parent7081c9bca60e7f3e89b1dbbe771ca2194923a84f (diff)
downloadphp-git-33b0349ed880a6724df6fb962b07c9ad6bb14126.tar.gz
small fixes to UPGRADING
-rw-r--r--UPGRADING8
1 files changed, 3 insertions, 5 deletions
diff --git a/UPGRADING b/UPGRADING
index c81b1d1142..544c8c0e48 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -22,8 +22,6 @@ PHP X.Y UPGRADE NOTES
========================================
- Core
- . Added null coalesce operator (??).
- (RFC: https://wiki.php.net/rfc/isset_ternary)
. list() now always supports ArrayAccess and never supports strings.
Previously both were accepted in some situations and not in others.
(RFC: https://wiki.php.net/rfc/fix_list_behavior_inconsistency)
@@ -36,6 +34,7 @@ PHP X.Y UPGRADE NOTES
around.
. Removed ASP (<%) and script (<script language=php>) tags.
(RFC: https://wiki.php.net/rfc/remove_alternative_php_tags)
+ . call_user_method() and call_user_method_array() no longer exists.
- DBA
. dba_delete() now returns false if the key was not found for the inifile
@@ -51,6 +50,8 @@ PHP X.Y UPGRADE NOTES
========================================
- Core
+ . Added null coalesce operator (??).
+ (RFC: https://wiki.php.net/rfc/isset_ternary)
. Support for strings with length >= 2^31 bytes in 64 bit builds
. Closure::call() method added
@@ -137,6 +138,3 @@ PHP X.Y UPGRADE NOTES
always be zero when casted to integer.
. Calling a method on a non-object no longer raises a fatal error; see
also: https://wiki.php.net/rfc/catchable-call-to-member-of-non-object
-
-- Standard
- . call_user_method() and call_user_method_array() no longer exists.