1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/spl/tests/spl_001.phpt
2020-02-03 22:52:20 +01:00

33 lines
364 B
PHP

--TEST--
SPL: iterator_to_array() and iterator_count()
--FILE--
<?php
$it = new ArrayObject(array("x"=>1, 1=>2, 3=>3, 4, "1"=>5));
$ar = iterator_to_array($it);
var_dump(iterator_count($it));
print_r($ar);
foreach($ar as $v)
{
var_dump($v);
}
?>
--EXPECT--
int(4)
Array
(
[x] => 1
[1] => 5
[3] => 3
[4] => 4
)
int(1)
int(5)
int(3)
int(4)