fixedarray_014.phpt 229 B

123456789101112131415
  1. --TEST--
  2. SPL: FixedArray: Trying to access inexistent item
  3. --FILE--
  4. <?php
  5. try {
  6. $a = new SplFixedArray(0);
  7. echo $a[0]++;
  8. } catch (Exception $e) {
  9. echo $e->getMessage();
  10. }
  11. ?>
  12. --EXPECT--
  13. Index invalid or out of range