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


PHP ArrayObject offsetGet()用法及代碼示例


PHP中ArrayObject類的offsetGet()函數用於獲取ArrayObject上特定索引處的值。

用法

mixed offsetGet($index) 

參數:此函數接受單個參數$index,將為其返回相應的值。


Return Value:此函數返回ArrayObject中指定索引處的值。

以下示例程序旨在說明上述函數:

程序1:

<?php 
// PHP program to illustrate the 
// offsetGet() function 
  
$arr = array("geeks100", "geeks99", "geeks1", "geeks02"); 
  
// Create array object 
$arrObject = new ArrayObject($arr); 
  
// Value present at index 1 
echo "".($arrObject->offsetGet(1)); 
  
// Value present at index 3 
echo "\n".($arrObject->offsetGet(3)); 
  
// Value present at index 0 
echo "\n".($arrObject->offsetGet(0)); 
  
?>
輸出:
geeks99
geeks02
geeks100

程序2:

<?php 
// PHP program to illustrate the 
// offsetGet() function 
  
$arr = array("Welcome"=>"1", "to" => "2", "GfG" => "3"); 
  
// Create array object 
$arrObject = new ArrayObject($arr); 
  
// Print the value at index "Welcome" 
echo $arrObject->offsetGet("Welcome"); 
  
// Print the value at index "to" 
echo "\n".$arrObject->offsetGet("to"); 
      
?>
輸出:
1
2

參考: http://php.net/manual/en/arrayobject.offsetget.php



相關用法


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