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.

13 lines
181 B

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