ArrayIterator::rewind

(no version information, might be only in CVS)

ArrayIterator::rewind --  Revient à la position initiale

Description

void ArrayIterator::rewind ( void )

ArrayIterator::rewind() remet l'itérateur au début du cycle.

Exemple 1. Exemple avec ArrayIterator::rewind()

<?php
$arrayobject
= new ArrayObject();

$arrayobject[] = 'zero';
$arrayobject[] = 'un';
$arrayobject[] = 'deux';

$iterator = $arrayobject->getIterator();

$iterator->next();
echo
$iterator->key(); //1

$iterator->rewind(); //retour au début
echo $iterator->key(); //0
?>

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 18:01:45