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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。