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


PHP Ds Set get()用法及代碼示例



Ds\Set::get() 函數可以返回給定索引處的值。

用法

public mixed Ds\Set::get( int $index )

Ds\Set::get() 函數可以返回請求索引處的值。

如果索引無效,Ds\Set::get() 函數可以拋出 OutOfRangeException。

例子1

<?php  
   $set = new \Ds\Set([10, 15, 20, 25, 30]);  
   var_dump($set);  
  
   echo "The value at index 3:"; 
   print_r($set->get(3)); 
?>

例子2

<?php  
   $set = new \Ds\Set(["Tutorials", "Point", "India"]);  
   var_dump($set);  
  
   echo "The value at index 1:"; 
   print_r($set->get(1)); 
?>

相關用法


注:本文由純淨天空篩選整理自 PHP - Ds Set get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。