PHP | SplDoublyLinkedList offsetGet()函数
SplDoublyLinkedList::offsetGet()函数是PHP中的一个内置函数,它返回给定索引处的值。
句法:
mixed SplDoublyLinkedList::offsetGet( $index )
参数:此函数接受一个包含索引值的参数$index 。
返回值:它返回给定索引处的值。
下面的程序说明了PHP中的SplDoublyLinkedList::offsetGet()函数:
方案一:
add(0, 30);
$list->add(1, 20);
$list->add(2, 30);
$list->add(3, "Geeks");
$list->add(4, 'G');
$list->rewind();
// Use SplDoublyLinkedList::offsetGet() function
// to check index exist or not
var_dump($list->offsetGet(2));
var_dump($list->offsetGet(3));
?>
输出:
int(30)
string(5) "Geeks"
方案二:
push(1);
$list->push(2);
$list->push(3);
$list->push(8);
$list->push(5);
// Use SplDoublyLinkedList::offsetGet() function
// to check index exist or not
var_dump($list->offsetGet(1));
var_dump($list->offsetGet(2));
var_dump($list->offsetGet(3));
?>
输出:
int(2)
int(3)
int(8)
参考: https://www. PHP.net/manual/en/spldoublylinkedlist.offsetget。 PHP