What is the shorthand for array notation in PHP?
I tried to use (doesn't work):
$list = {};
It will be perfect, if you give links on some information about other shorthands for PHP.
Short array syntax was introduced in PHP 5.4 and was added to the Drupal code standards for Drupal 8. Short array syntax is cleaner and is consistent with other programming languages, such as Python. It is also easier to see closing array statement from the closing brackets of a function.
The in_array() function is an inbuilt function in PHP that is used to check whether a given value exists in an array or not. It returns TRUE if the given value is found in the given array, and FALSE otherwise.
Update:
As of PHP 5.4.0 a shortened syntax for declaring arrays has been introduced:
$list = [];
Previous Answer:
There isn't. Only $list = array();
But you can just start adding elements.
<?php $list[] = 1; $list['myKey'] = 2; $list[42] = 3;
It's perfectly OK as far as PHP is concerned. You won't even get a E_NOTICE for undefined variables.
E_NOTICE level error is issued in case of working with uninitialized variables, however not in the case of appending elements to the uninitialized array.
As for shorthand methods, there are lots scattered all over. If you want to find them just read The Manual.
Some examples, just for your amusement:
$arr[]
shorthand for array_push
.foreach
constructecho $string1, $string2, $string3;
+
elseif
$name = 'Jack'; echo "Hello $name";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With