]> granicus.if.org Git - php/commitdiff
- add short array syntax, missing files and info
authorPierre Joye <pajoye@php.net>
Sat, 23 Jul 2011 20:27:08 +0000 (20:27 +0000)
committerPierre Joye <pajoye@php.net>
Sat, 23 Jul 2011 20:27:08 +0000 (20:27 +0000)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index 931cd67aeca5f3eb286efbe4100b42e1d8574a28..4f30e6df5cb671fb96475b62b7baa97955920a00 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2011, PHP 5.4.0 Alpha 3
+- Added features:
+ . Short array syntax, see UPGRADING guide for full details (rsky0711 at gmail 
+   . com, sebastian.deutsch at 9elements . com, Pierre)
 - Removed features:
   . Removed magic_quotes_gpc, magic_quotes_runtime and magic_quotes_sybase ini options.
     get_magic_quotes_gpc, get_magic_quotes_runtime are kept but always return
index dede4da51577acc907250619c711403e4b412afc..a59ff2c2ad3566b35062bd4e129d8c9ba80ef817 100755 (executable)
--- a/UPGRADING
+++ b/UPGRADING
@@ -30,6 +30,7 @@ UPGRADE NOTES - PHP X.Y
      h. New methods
      i. New class constants
      j. New hash algorithms
+     k. New Syntax
 
 ========================================
 1. Changes made to default configuration
@@ -458,7 +459,7 @@ UPGRADE NOTES - PHP X.Y
        - joaat
        
      k. New Syntax
-       - Short array syntax
+       - Short array syntax in 5.4.0
          $a = [1, 2, 3, 4];
          $a = ['one' => 1, 'two' => 2, 'three' => 3, 'four' => 4];
          $a = ['one' => 1, 2, 'three' => 3, 4];