PHP | ArrayIterator key()函数
ArrayIterator::key()函数是PHP中的一个内置函数,它返回数组元素的当前键。
句法:
mixed ArrayIterator::key( void )
参数:此函数不接受任何参数。
返回值:此函数返回当前数组键。
下面的程序说明了PHP中的 ArrayIterator::key()函数:
方案一:
key() . "\n";
}
?>
输出:
0
1
2
3
4
5
6
7
方案二:
"Geeks",
"b" => "for",
"c" => "Geeks"
)
);
// Append the element into array iterator
$arrItr->append("Computer");
$arrItr->append("Science");
$arrItr->append("Portal");
// Display the key and its value of
// array iterator
foreach($arrItr as $element) {
echo "key: " . $arrItr->key() . " Value: "
. $arrItr->current() . "\n";
}
?>
输出:
key: a Value: Geeks
key: b Value: for
key: c Value: Geeks
key: 0 Value: Computer
key: 1 Value: Science
key: 2 Value: Portal
参考: https://www. PHP.net/manual/en/arrayiterator.key。 PHP