summaryrefslogtreecommitdiff
path: root/tests/lang/array_shortcut_001.phpt
blob: 18a10ea09b4544c828e9ab0512149748e90c07c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Square bracket array shortcut test
--FILE--
<?php
print_r([1, 2, 3]);
?>
--EXPECT--
Array
(
    [0] => 1
    [1] => 2
    [2] => 3
)