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