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.

14 lines
192 B

  1. --TEST--
  2. Ensure that ArrayObject acts like an array
  3. --SKIPIF--
  4. --FILE--
  5. <?php
  6. $a = new ArrayObject;
  7. $a['foo'] = 'bar';
  8. echo reset($a);
  9. echo count($a);
  10. echo current($a);
  11. ?>
  12. --EXPECT--
  13. bar1bar