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


PHP ArrayIterator seek()用法及代碼示例


ArrayIterator::seek()函數是PHP中的內置函數,用於查找數組迭代器的位置。

用法:

void ArrayIterator::seek( int $position )

參數:該函數接受單個參數$position,該參數保存要尋找的位置。


返回值:該函數不返回任何值。

以下示例程序旨在說明PHP中的ArrayIterator::seek()函數:

程序1:

<?php 
  
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "a" => 4, 
        "b" => 2, 
        "g" => 8, 
        "d" => 6, 
        "e" => 1, 
        "f" => 9 
    ) 
); 
  
// Seek the position 
$arrItr->seek(5); 
      
// Display the element 
echo $arrItr->current(); 
  
?>
輸出:
9

程序2:

<?php 
     
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "b" => "for", 
        "a" => "Geeks", 
        "e" => "Science", 
        "c" => "Geeks", 
        "f" => "Portal", 
        "d" => "Computer"
    ) 
); 
    
// Check the validity of ArrayIterator 
if($arrItr->valid()) { 
      
    // Seek the position 
    $arrItr->seek(3); 
      
    // Display the element 
    echo $arrItr->current(); 
} 
  
?>
輸出:
Geeks

參考: https://www.php.net/manual/en/arrayiterator.seek.php



相關用法


注:本文由純淨天空篩選整理自 PHP | ArrayIterator seek() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。