]> granicus.if.org Git - php/commitdiff
More UPGRADING, NEWS
authorAndrea Faulds <ajf@ajf.me>
Fri, 19 Dec 2014 01:06:46 +0000 (01:06 +0000)
committerAndrea Faulds <ajf@ajf.me>
Fri, 19 Dec 2014 01:06:46 +0000 (01:06 +0000)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index aad4837de45692990f91ed6c2e720e97fec1797d..06a50dea123e375ca35115a668d46daa947295ce 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -29,6 +29,8 @@
   . is_long() & is_integer() is now an alias of is_int(). (Kalle)
   . Implemented FR #55467 (phpinfo: PHP Variables with $ and single quotes). (Kalle)
   . Fixed bug #55415 (php_info produces invalid anchor names). (Kalle, Johannes)
+  . Added ?? operator. (Andrea)
+  . Added \u{xxxxx} Unicode Codepoint Escape Syntax. (Andrea)
 
 - Date:
   . Fixed day_of_week function as it could sometimes return negative values
index 68d96824e5c6c0693b852d82b03762c148c0fec8..46c64e8c9e4ffe598f8d55b53eb4b89e93aace0d 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -47,10 +47,10 @@ PHP X.Y UPGRADE NOTES
        https://wiki.php.net/rfc/uniform_variable_syntax#semantic_differences_in_existing_syntax 
   . The global keyword now only accepts simple variables. See details in:
     https://wiki.php.net/rfc/uniform_variable_syntax#global_keyword_takes_only_simple_variables
-  . Added \u{xxxxxx} Unicode Codepoint Escape Syntax for double-quoted strings
-    and heredocs. While \u does not not become a syntax error, so existing
-    strings like "\u202e" will be unchanged, \u{ followed by an invalid sequence
-    will now error.
+  . The addition of Unicode Codepoint Escape Syntax for double-quoted strings
+    and heredocs means that \u{ followed by an invalid sequence will now error.
+    However, \u without a following { is unaffected, so "\u202e" won't error and
+    will work the same as before.
 
 - DBA
   . dba_delete() now returns false if the key was not found for the inifile
@@ -70,6 +70,8 @@ PHP X.Y UPGRADE NOTES
     (RFC: https://wiki.php.net/rfc/isset_ternary)
   . Support for strings with length >= 2^31 bytes in 64 bit builds
   . Closure::call() method added
+  . Added \u{xxxxxx} Unicode Codepoint Escape Syntax for double-quoted strings
+    and heredocs.
 
 - Standard
   . intdiv() function for integer division added.