ArrayIterator::next
(PHP 5, PHP 7, PHP 8)
ArrayIterator::next — Move to next entry
說明
public ArrayIterator::next(): void
The iterator to the next entry.
參數
此函式沒有參數。
返回值
沒有返回值。
範例
示例 #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