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/iterator_012.phpt
2020-02-03 22:52:20 +01:00

31 lines
392 B
PHP

--TEST--
SPL: NoRewindIterator
--FILE--
<?php
echo "===Current===\n";
$it = new NoRewindIterator(new ArrayIterator(array(0 => 'A', 1 => 'B', 2 => 'C')));
echo $it->key() . '=>' . $it->current() . "\n";
echo "===Next===\n";
$it->next();
echo "===Foreach===\n";
foreach($it as $key=>$val)
{
echo "$key=>$val\n";
}
?>
--EXPECT--
===Current===
0=>A
===Next===
===Foreach===
1=>B
2=>C