PHP key() 函数
PHP key() 函数
实例
从当前内部指针位置返回元素键名:
$people=array("Peter","Joe","Glenn","Cleveland");
echo "The key from the current position is: " . key($people);
?>
echo "The key from the current position is: " . key($people);
?>
运行结果:
The key from the current position is: 0
定义和用法
key() 函数从当前内部指针位置返回元素键名。
如果错误,函数返回 FALSE。
语法
key(array)
参数 | 描述 |
---|---|
array | 必需。规定要使用的数组。 |
技术细节
返回值: | 返回当前内部指针所指向的数组元素的键名。 |
---|---|
PHP 版本: | 4+ |
完整的 PHP Array 参考手册
相关文章
- PHP 语法
- PHP 错误处理
- PHP 高级过滤器
- PHP key() 函数
- PHP natcasesort() 函数
- PHP localtime() 函数
- PHP clearstatcache() 函数
- PHP ftp_close() 函数
- PHP log1p() 函数
- PHP connection_aborted() 函数
- PHP mysqli_get_server_version() 函数
- PHP mysqli_real_escape_string() 函数
- PHP PDO 大对象 (LOBs)
- PHP registerXPathNamespace() 函数
- PHP simplexml_load_file() 函数
- PHP nl_langinfo() 函数
- PHP strtr() 函数
- PHP vfprintf() 函数
- PHP wordwrap() 函数
- PHP imagecolorallocate – 为一幅图像分配颜色