PHP Conference Japan 2024

ArrayIterator::current

(PHP 5、PHP 7、PHP 8)

ArrayIterator::current返回当前数组条目

描述

public 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

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top