ArrayIterator::current
Return current array entry
Description
mixedArrayIterator::current
This function returns the current array entry
ArrayIterator::current example
'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
]]>