📜  PHP | SplDoublyLinkedList next()函数

📅  最后修改于: 2022-05-13 01:56:24.785000             🧑  作者: Mango

PHP | SplDoublyLinkedList next()函数

SplDoublyLinkedList::next()函数是PHP中的一个内置函数,用于将索引移动到下一个索引。

句法:

void SplDoublyLinkedList::next( void )

参数:此函数不接受任何参数。

返回值:不返回任何值。

下面的程序说明了PHP中的SplDoublyLinkedList::next()函数:

方案一:

add(0, 30);
$list->add(1, 20);
$list->add(2, 30);
$list->add(3, "Geeks");
$list->add(4, 'G');
$list->rewind();
  
// Use SplDoublyLinkedList::current() function
// to get the current element
var_dump($list->current());
  
// Use next() function to increment
// the index value
$list->next();
  
// Use SplDoublyLinkedList::current() function
// to get the current element
var_dump($list->current());
  
?> 
输出:
int(30)
int(20)

方案二:

push(1);
$list->push(2);
$list->push(3);
$list->push(8);
$list->push(5);
  
$list->rewind();
  
// Use SplDoublyLinkedList::current() function
// to get the current element
var_dump($list->current());
  
// Use next() function to increment
// the index value
$list->next();
$list->next();
$list->next();
  
// Use SplDoublyLinkedList::current() function
// to get the current element
var_dump($list->current());
  
?> 
输出:
int(1)
int(8)

参考: https://www. PHP.net/manual/en/spldoublylinkedlist.next。 PHP