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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。