$dll = new SplDoublyLinkedList();
$dll->push(2);
$dll->push(3);
$dll->unshift(5);
$dll->rewind();
while($dll->valid()){
echo $dll->current().'<br />';
$dll->next();//切换到下一个列表项
}
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SplDoublyLinkedList::next — 移动到下一个条目
此函数没有参数。
不返回任何值。