You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
245 B

18 years ago
18 years ago
18 years ago
  1. --TEST--
  2. SPL: FixedArray: adding new elements
  3. --FILE--
  4. <?php
  5. $a = new SplFixedArray(10);
  6. try {
  7. $a[] = 1;
  8. } catch (Exception $e) {
  9. var_dump($e->getMessage());
  10. }
  11. ?>
  12. ===DONE===
  13. --EXPECTF--
  14. string(29) "Index invalid or out of range"
  15. ===DONE===