📜  PHP | Ds\Deque find()函数

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

PHP | Ds\Deque find()函数

Ds\Deque::find()函数是PHP中的一个内置函数,如果在 Deque 中找到元素,则用于查找 Deque 中元素的索引。
句法:

public Ds\Deque::find( $value ) : mixed

参数:此函数接受单个参数$value ,该参数保存要找到其索引的元素。
返回值:如果元素存在,此函数返回元素的索引,否则返回false。
下面的程序说明了PHP中的Ds\Deque::find()函数:
方案一:

PHP
find(3));
 
?>


PHP
find("ABC"));
 
?>


输出:

Elements in the Deque
Ds\Deque Object
(
   [0] => 10
   [1] => 20
   [2] => 3
   [3] => 40
   [4] => 50
   [5] => 6
)
Index of 3 in the deque: 2

方案二:

PHP

find("ABC"));
 
?>

输出:

Elements in the Deque
Ds\Deque Object
(
   [0] => Geeks
   [1] => for
   [2] => GFG
)
Index of 3 in the deque: bool(false)

参考: http: PHP。 PHP