La función ArrayIterator::seek() es una función incorporada en PHP que se utiliza para buscar la posición de un iterador de array.
Sintaxis:
void ArrayIterator::seek( int $position )
Parámetros: esta función acepta un único parámetro $posición que contiene la posición a buscar.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función ArrayIterator::seek() en PHP:
Programa 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(); ?>
Producción:
9
Programa 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(); } ?>
Producción:
Geeks
Referencia: https://www.php.net/manual/en/arrayiterator.seek.php