(PHP 5 >= 5.0.0, PHP 7)
Move to next entry
public void ArrayIterator::next ( void )
The iterator to the next entry.
Returns:
No value is returned.
Examples:
ArrayIterator::next() example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php $arrayobject = new ArrayObject(); $arrayobject [] = 'zero' ; $arrayobject [] = 'one' ; $iterator = $arrayobject ->getIterator(); while ( $iterator ->valid()) { echo $iterator ->key() . ' => ' . $iterator ->current() . "\n" ; $iterator ->next(); } ?> |
The above example will output:
0 => zero 1 => one
Please login to continue.