(PHP 5)
ArrayIterator::rewind — Revient à la position initiale
Revient à la position initiale.
Cette fonction ne contient aucun paramètre.
Aucune valeur n'est retournée.
Exemple #1 Exemple avec ArrayIterator::rewind()
<?php
$arrayobject = new ArrayObject();
$arrayobject[] = 'zero';
$arrayobject[] = 'one';
$arrayobject[] = 'two';
$iterator = $arrayobject->getIterator();
$iterator->next();
echo $iterator->key(); //1
$iterator->rewind(); // revient au début
echo $iterator->key(); //0
?>