fixedarray_012.phpt 261 B

12345678910111213141516171819
  1. --TEST--
  2. SPL: FixedArray: Assigning the object to another variable using []
  3. --FILE--
  4. <?php
  5. $a = new SplFixedArray(100);
  6. try {
  7. $b = &$a[];
  8. } catch (Exception $e) {
  9. echo $e->getMessage(), "\n";
  10. }
  11. print "ok\n";
  12. ?>
  13. --EXPECT--
  14. Index invalid or out of range
  15. ok