(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SeekableIterator::seek — Recherche une position
Recherche la position donnée dans l'itérateur.
offset
La position à atteindre.
Aucune valeur n'est retournée.
L'implémentations doit émettre une exception OutOfBoundsException
si la position offset
n'est pas atteignable.
Exemple #1 Exemple avec SeekableIterator::seek()
Déplace l'itérateur à la position 3 (ArrayIterator implémente SeekableIterator).
<?php
$array = array("apple", "banana", "cherry", "damson", "elderberry");
$iterator = new ArrayIterator($array);
$iterator->seek(3);
echo $iterator->current();
?>
Résultat de l'exemple ci-dessus est similaire à :
damson