ArrayIterator::next

(PHP 5, PHP 7, PHP 8)

ArrayIterator::next移至下一项

描述

public ArrayIterator::next(): void

将迭代器移至下一项。

参数

此函数没有参数。

返回值

不返回值。

示例

示例 #1 ArrayIterator::next() 示例

<?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

添加注释

用户贡献注释 1 条注释

onelsonsenna at gmail dot com
12 年前
如果您使用 ArrayObject 的 exchangeArray 方法,然后使用 ArrayIterator 的 next 方法,如下所示

<?php

$fruits
= array("apple", "grape", "lemon");

$colors = array("blue", "yellow", "green");

$arrayObject = new ArrayObject($fruits);

$arrayIterator = $arrayObject->getIterator();

while(
$arrayIterator->valid()) {

if (
$arrayIterator->current() == "grape") {
$arrayObject->exchangeArray($colors);
}

$arrayIterator->next();
}

?>

您将收到

PHP Notice: ArrayIterator::next(): Array was modified outside object and internal position is no longer valid

所以要小心 next 和 prev 操作。:)
To Top