PHP: Short syntax for arrays
Just letting you guys know that now you can do this:
$newSyntax = [
'key' => 'value',
'anotherKey' => 'anotherValue'
];
Instead of this:
$oldSyntax = array(
'key' => 'value',
'anotherKey' => 'anotherValue'
);
All you need is PHP 5.4 or higher.
For more info: https://wiki.php.net/rfc/shortsyntaxforarrays
Written by Osvaldo Zonetti
Related protips
2 Responses
I think in this example is missing a '
$newSyntax = [
'key' => 'value',
'anotherKey' => 'anotherValue'
];
over 1 year ago
·
@bueltge True. Fixed. Thanks :D
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#