pajoye Sat, 23 Jul 2011 20:27:08 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=313642
Log: - add short array syntax, missing files and info Changed paths: U php/php-src/branches/PHP_5_4/NEWS U php/php-src/branches/PHP_5_4/UPGRADING U php/php-src/trunk/UPGRADING Modified: php/php-src/branches/PHP_5_4/NEWS =================================================================== --- php/php-src/branches/PHP_5_4/NEWS 2011-07-23 20:23:21 UTC (rev 313641) +++ php/php-src/branches/PHP_5_4/NEWS 2011-07-23 20:27:08 UTC (rev 313642) @@ -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 Modified: php/php-src/branches/PHP_5_4/UPGRADING =================================================================== --- php/php-src/branches/PHP_5_4/UPGRADING 2011-07-23 20:23:21 UTC (rev 313641) +++ php/php-src/branches/PHP_5_4/UPGRADING 2011-07-23 20:27:08 UTC (rev 313642) @@ -30,6 +30,7 @@ h. New methods i. New class constants j. New hash algorithms + k. New Syntax ======================================== 1. Changes made to default configuration @@ -458,7 +459,7 @@ - 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]; Modified: php/php-src/trunk/UPGRADING =================================================================== --- php/php-src/trunk/UPGRADING 2011-07-23 20:23:21 UTC (rev 313641) +++ php/php-src/trunk/UPGRADING 2011-07-23 20:27:08 UTC (rev 313642) @@ -30,6 +30,7 @@ h. New methods i. New class constants j. New hash algorithms + k. New Syntax ======================================== 1. Changes made to default configuration @@ -449,7 +450,7 @@ - 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];
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php