当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds Deque find()用法及代码示例



Ds\Deque::find() 函数可以尝试查找值的索引。

用法

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

Ds\Deque::find() 函数可以返回值的索引,如果没有找到则返回 false。

例子1

<?php 
   $deque = new \Ds\Deque([10, 20, 5, 40, 50, 8]); 
   echo("The elements in the deque:\n"); 
   print_r($deque); 
   print_r($deque->find(3));
?>

例子2

<?php    
   $deque = new \Ds\Deque(["Tutorials", "Point", "India"]); 
   echo("The elements in the deque:\n"); 
   print_r($deque); 
   var_dump($deck->find("TPT")); 
?>

相关用法


注:本文由纯净天空筛选整理自 PHP - Ds Deque find() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。