ArrayIterator::next

(PHP 5, PHP 7)

ArrayIterator::nextMove to next entry

˵��

public ArrayIterator::next ( void ) : void

The iterator to the next entry.

����

�˺���û�в�����

����ֵ

û�з���ֵ��

����

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

�������̻������

0 => zero
1 => one