ArrayIterator::next

(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
<?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
doc_php
2016-02-24 16:19:40
Comments
Leave a Comment

Please login to continue.