summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-07-23 20:27:08 +0000
committerPierre Joye <pajoye@php.net>2011-07-23 20:27:08 +0000
commite708f4bb89dffadc65970c7116680144cece3f31 (patch)
tree9872189dee3356dfbe4002b3b5b3f93b9b2c09d7 /UPGRADING
parentcbe0ed86e76c4e25ba7ee507238b4dcbc28f863a (diff)
downloadphp-git-e708f4bb89dffadc65970c7116680144cece3f31.tar.gz
- add short array syntax, missing files and info
Diffstat (limited to 'UPGRADING')
-rwxr-xr-xUPGRADING3
1 files changed, 2 insertions, 1 deletions
diff --git a/UPGRADING b/UPGRADING
index ba47155b9f..be650a3784 100755
--- 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
@@ -449,7 +450,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];