The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?php
$myArray['key']                = $value;
$myArray[/* key start */'key'] = $value;
$myArray[/* key start */'key'/* key end */] = $value;
$myArray  [  'key'  ]            = $value;
if ($array[($index + 1)] === true) {
} else if ($array  [ ($index + 1) ] === null) {
}
$array = [
    'foo' => 'bar',
    'bar' => 'foo',
];

$array = [];
?>