summaryrefslogtreecommitdiff
path: root/tests/lang/array_shortcut_002.phpt
blob: 25aee9ba397bfcb421e7724e14d43b780419907e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Square bracket associative array shortcut test
--FILE--
<?php
print_r(["foo" => "orange", "bar" => "apple", "baz" => "lemon"]);
?>
--EXPECT--
Array
(
    [foo] => orange
    [bar] => apple
    [baz] => lemon
)