negative_index.phpt 491 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. Test arrays starting with negative indices
  3. --FILE--
  4. <?php
  5. $a = array_fill(-2, 3, true);
  6. $b = [-2 => true, true, true];
  7. $c = ["string" => true, -2 => true, true, true];
  8. unset($c["string"]);
  9. $d[-2] = true;
  10. $d[] = true;
  11. $d[] = true;
  12. $e = [-2 => false];
  13. array_pop($e);
  14. $e[] = true;
  15. $e[] = true;
  16. $e[] = true;
  17. var_dump($a === $b && $b === $c && $c === $d && $d == $e);
  18. var_dump($a);
  19. ?>
  20. --EXPECT--
  21. bool(true)
  22. array(3) {
  23. [-2]=>
  24. bool(true)
  25. [-1]=>
  26. bool(true)
  27. [0]=>
  28. bool(true)
  29. }