bug62262.phpt 183 B

12345678910
  1. --TEST--
  2. Bug #62262: RecursiveArrayIterator does not implement Countable
  3. --FILE--
  4. <?php
  5. var_dump(new RecursiveArrayIterator(array()) instanceof Countable);
  6. ?>
  7. --EXPECT--
  8. bool(true)