update : 2015.11.03
php.shukuma.com

검색:
 
 
Return current array entry

ArrayIterator::current

(PHP 5 >= 5.0.0)

ArrayIterator::currentReturn current array entry

설명

public mixed ArrayIterator::current ( void )

Get the current array entry.

인수

이 함수는 인수가 없습니다.

반환값

The current array entry.

예제

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

위 예제의 출력:

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