ArrayIterator::current
Retourne l'entrée courante du tableau
&reftitle.description;
public mixedArrayIterator::current
Retourne l'entrée courante du tableau.
&reftitle.parameters;
&no.function.parameters;
&reftitle.returnvalues;
L'entrée courante du tableau.
&reftitle.examples;
Exemple avec ArrayIterator::current
'one',
'2' => 'two',
'3' => 'three');
$arrayobject = new ArrayObject($array);
for($iterator = $arrayobject->getIterator();
$iterator->valid();
$iterator->next()) {
echo $iterator->key() . ' => ' . $iterator->current() . "\n";
}
?>
]]>
&example.outputs;
one
2 => two
3 => three
]]>