📜  PHP | ArrayIterator offsetGet()函数

📅  最后修改于: 2022-05-13 01:56:38.438000             🧑  作者: Mango

PHP | ArrayIterator offsetGet()函数

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

句法:

mixed ArrayIterator::offsetGet( mixed $index )

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

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

下面的程序说明了PHP中的 ArrayIterator::offsetGet()函数:

方案一:

 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

方案二:

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