Move to next entry

ArrayIterator::next

(PHP 5, PHP 7, PHP 8)

ArrayIterator::nextMove 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

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *