目录

PHP key() 函数

❮ PHP 数组参考

示例

从当前内部指针位置返回元素键:

<?php
$people=array("Peter","Joe","Glenn","Cleveland");
echo "The key from the current position is: " . key($people);
?>
亲自试一试 »

定义和用法

key() 函数从当前内部指针位置返回元素键。

出错时该函数返回 FALSE。


语法

key( array)

参数值

Parameter Description
array Required. Specifies the array to use

技术细节

返回值: 返回内部指针当前指向的数组元素的键
PHP 版本: 4+

❮ PHP 数组参考