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