Annotation of embedaddon/php/tests/lang/array_shortcut_003.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Testing array shortcut and bracket operator
        !             3: --FILE--
        !             4: <?php
        !             5: $a = [1, 2, 3, 4, 5];
        !             6: print_r([$a[1], $a[3]]);
        !             7: ?>
        !             8: --EXPECT--
        !             9: Array
        !            10: (
        !            11:     [0] => 2
        !            12:     [1] => 4
        !            13: )

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>