當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。