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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。