(PHP 5)
ArrayIterator::current — Retourne l'entrée courante du tableau
Cette fonction ne contient aucun paramètre.
L'entrée courante du tableau.
Exemple #1 Exemple avec ArrayIterator::current()
<?php
$array = array('1' => 'one',
'2' => 'two',
'3' => 'three');
$arrayobject = new ArrayObject($array);
for($iterator = $arrayobject->getIterator();
$iterator->valid();
$iterator->next()) {
echo $iterator->key() . ' => ' . $iterator->current() . "\n";
}
?>
L'exemple ci-dessus va afficher :
1 => one 2 => two 3 => three