php-src/ext/spl/tests/bug62262.phpt

11 lines
183 B
Plaintext
Raw Normal View History

--TEST--
Bug #62262: RecursiveArrayIterator does not implement Countable
--FILE--
<?php
var_dump(new RecursiveArrayIterator(array()) instanceof Countable);
?>
--EXPECT--
bool(true)