PHP | SplDoublyLinkedList key()函数
SplDoublyLinkedList::key()函数是PHP中的一个内置函数,用于返回当前节点的索引。
句法:
mixed SplDoublyLinkedList::key( void )
参数:此函数不接受任何参数。
返回值:返回当前节点的索引。
下面的程序说明了PHP中的 S plDoublyLinkedList::key()函数:
方案一:
add(0, 30);
$list->add(1, 20);
$list->add(2, 30);
$list->add(3, "Geeks");
$list->add(4, 'G');
$list->rewind();
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
// Use next() function to increment
// the index value
$list->next();
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
?>
输出:
int(0)
int(1)
方案二:
push(1);
$list->push(2);
$list->push(3);
$list->push(8);
$list->push(5);
$list->rewind();
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
// Use next() function to increment
// the index value
$list->next();
$list->next();
$list->next();
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
?>
输出:
int(0)
int(3)
参考: https://www. PHP.net/manual/en/spldoublylinkedlist.key。 PHP