ArrayIterator
PHP Manual

ArrayIterator::current

(PHP 5)

ArrayIterator::currentReturn current array entry

Описание

mixed ArrayIterator::current ( void )

Get the current array entry.

Список параметров

This function has no parameters.

Возвращаемые значения

The current array entry.

Примеры

Пример #1 ArrayIterator::current() example

<?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";
}
?>

Результат выполнения данного примера:

1 => one
2 => two
3 => three


ArrayIterator
PHP Manual