summaryrefslogtreecommitdiff
path: root/tests/lang/array_shortcut_003.phpt
blob: 75e428b63ef3a77fc0f3e14283bcb2f4584a0ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Testing array shortcut and bracket operator
--FILE--
<?php
$a = [1, 2, 3, 4, 5];
print_r([$a[1], $a[3]]);
?>
--EXPECT--
Array
(
    [0] => 2
    [1] => 4
)