ArrayIterator::current

(PHP 5, PHP 7)

ArrayIterator::currentReturn current array entry

Descrierea

public ArrayIterator::current ( void ) : mixed

Get the current array entry.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The current array entry.

Exemple

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

Exemplul de mai sus va afișa:

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