1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/spl/tests/ArrayObject/array_016.phpt

30 lines
344 B
PHP

--TEST--
SPL: ArrayIterator/Object and IteratorIterator
--FILE--
<?php
$it = new ArrayIterator(range(0,3));
foreach(new IteratorIterator($it) as $v)
{
var_dump($v);
}
$it = new ArrayObject(range(0,3));
foreach(new IteratorIterator($it) as $v)
{
var_dump($v);
}
?>
--EXPECT--
int(0)
int(1)
int(2)
int(3)
int(0)
int(1)
int(2)
int(3)