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


PHP ArrayIterator offsetGet()用法及代码示例


ArrayIterator::offsetGet()函数是PHP中的内置函数,用于获取偏移量的值。

用法:

mixed ArrayIterator::offsetGet( mixed $index )

参数:该函数接受单个参数$index,该参数保存要从中获取值的偏移量。


返回值:该函数返回偏移量索引处的值。

以下示例程序旨在说明PHP中的ArrayIterator::offsetGet()函数:

程序1:

<?php 
  
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "a" => 4, 
        "b" => 2, 
        "g" => 8, 
        "d" => 6, 
        "e" => 1, 
        "f" => 9 
    ) 
); 
  
// Value present at index "a"  
echo ($arrItr->offsetGet("a")) . " ";  
    
// Value present at index "g" 
echo ($arrItr->offsetGet("g")) . " ";  
    
// Value present at index "f" 
echo ($arrItr->offsetGet("f"));  
  
?>
输出:
4 8 9

程序2:

<?php 
     
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "for", "Geeks", "Science", 
        "Geeks", "Portal", "Computer"
    ) 
); 
  
    
// Print the value at index 1  
echo $arrItr->offsetGet(1) . "\n";  
    
// Print the value at index 0 
echo $arrItr->offsetGet(0) . "\n";  
  
// Print the value at index 3 
echo $arrItr->offsetGet(3);  
  
?>
输出:
Geeks
for
Geeks

参考: https://www.php.net/manual/en/arrayiterator.offsetget.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ArrayIterator offsetGet() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。