ArrayIterator
PHP Manual

ArrayIterator::current

(PHP 5 >= 5.0.0)

ArrayIterator::currentReturn current array entry

Descrizione

public mixed ArrayIterator::current ( void )

Get the current array entry.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The current array entry.

Esempi

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

Il precedente esempio visualizzerĂ :

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


ArrayIterator
PHP Manual