SplDoublyLinkedList::next

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SplDoublyLinkedList::next移动到下一个条目

描述

public SplDoublyLinkedList::next(): void

将迭代器移动到下一个节点。

参数

此函数没有参数。

返回值

不返回任何值。

添加注释

用户贡献的注释 1 注释

0
匿名
10 年前
$dll = new SplDoublyLinkedList();

$dll->push(2);
$dll->push(3);
$dll->unshift(5);
$dll->rewind();

while($dll->valid()){
echo $dll->current().'<br />';
$dll->next();//切换到下一个列表项
}
To Top