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


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


PHP中Ds \ Set類的Ds \ Set::get()函數是一個內置函數,用於從Set實例獲取值。此函數用於獲取Set實例中特定索引處的值。

用法:

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

參數:該函數接受單個參數$index,該參數代表將從中獲取值的Set中的索引位置。


返回值:此函數在Set實例的索引$index處返回當前值。

以下示例程序旨在說明Ds \ Set::get()函數:

程序1:

<?php  
  
// Declare new Set 
$set = new \Ds\Set([10, 15, 21]);  
  
// Display the Set element  
var_dump($set);  
  
// Display value at index 2 
echo "Value at index 2 is:"; 
print_r($set->get(2)); 
  
?> 
輸出:
object(Ds\Set)#1 (3) {
  [0]=>
  int(10)
  [1]=>
  int(15)
  [2]=>
  int(21)
}
Value at index 2 is:21

程序2:

<?php  
  
// Declare new Set 
$set = new \Ds\Set(["Geeks", "for", "Keegs"]);  
  
// Display the Set element  
var_dump($set);  
  
// Display the value at index 0 
echo "Value at index 0 is:"; 
print_r($set->get(0)); 
  
?> 
輸出:
object(Ds\Set)#1 (3) {
  [0]=>
  string(5) "Geeks"
  [1]=>
  string(3) "for"
  [2]=>
  string(5) "Keegs"
}
Value at index 0 is:Geeks

參考: http://php.net/manual/en/ds-set.get.php



相關用法


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