(PHP 5、PHP 7、PHP 8)
ArrayIterator::current — 返回当前数组条目
此函数没有参数。
当前的数组条目。
示例 #1 ArrayIterator::current() 示例
<?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