📜  PHP | SplDoublyLinkedList offsetExists()函数

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

PHP | SplDoublyLinkedList offsetExists()函数

SplDoublyLinkedList::offsetExists()函数是PHP中的一个内置函数,用于检查给定索引是否存在。

句法:

bool SplDoublyLinkedList::offsetExists( $index )

参数:此函数接受一个参数$index ,它保存要检查的索引值。

返回值:如果给定索引存在则返回True,否则返回False。

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

方案一:

add(0, 30);
$list->add(1, 20);
$list->add(2, 30);
$list->add(3, "Geeks");
$list->add(4, 'G');
$list->rewind();
  
// Use SplDoublyLinkedList::offsetExists() function
// to check index exist or not
var_dump($list->offsetExists(2));
  
var_dump($list->offsetExists(10));
  
?> 
输出:
bool(true)
bool(false)

方案二:

push(1);
$list->push(2);
$list->push(3);
$list->push(8);
$list->push(5);
  
// Use SplDoublyLinkedList::offsetExists() function
// to check index exist or not
var_dump($list->offsetExists(3));
  
var_dump($list->offsetExists(15));
  
?> 
输出:
bool(true)
bool(false)

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