ArrayIterator::next

(PHP 5, PHP 7)

ArrayIterator::nextMove to next entry

Descrierea

public ArrayIterator::next ( void ) : void

The iterator to the next entry.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Nu este întoarsă nici o valoare.

Exemple

Example #1 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();
}
?>

Exemplul de mai sus va afișa:

0 => zero
1 => one