fixedarray_012.phpt 277 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 (Error $e) {
  9. echo $e->getMessage(), "\n";
  10. }
  11. print "ok\n";
  12. ?>
  13. --EXPECT--
  14. [] operator not supported for SplFixedArray
  15. ok