📜  PHP | ArrayIterator seek()函数

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

PHP | ArrayIterator seek()函数

ArrayIterator::seek()函数是PHP中的一个内置函数,用于查找数组迭代器的位置。

句法:

void ArrayIterator::seek( int $position )

参数:此函数接受单个参数$position保存要查找的位置。

返回值:此函数不返回任何值。

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

方案一:

 4,
        "b" => 2,
        "g" => 8,
        "d" => 6,
        "e" => 1,
        "f" => 9
    )
);
  
// Seek the position
$arrItr->seek(5);
      
// Display the element
echo $arrItr->current();
  
?>
输出:
9

方案二:

 "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