array_shortcut_003.phpt 165 B

12345678910111213
  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. )