首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
PHP中的数组介绍
array()函数
array_change_key_case()函数
array_chunk()函数
array_column()函数
array_combine()函数
array_count_values()函数
array_diff()函数
array_diff_assoc()函数
array_diff_key()函数
array_diff_uassoc()函数
array_diff_ukey()函数
array_fill()函数
array_fill_keys() 函数
count()函数
end()函数
array_filter()函数
array_keys()函数
array_push()函数
array_flip()函数
array_rand()函数
array_reduce()函数
array_replace()函数
array_search()函数
array_sum()函数
array_values()函数
array_unique()函数
array_unshift()函数
array_walk()函数
in_array()函数
array_pop()函数
array_reverse()函数
array_shift()函数
array_slice()函数
extract()函数
key()函数
list()函数
sort()函数
当前位置:
首页>>
技术小册>>
PHP合辑3-数组函数
小册名称:PHP合辑3-数组函数
key()函数是PHP中的一个内置函数,用于返回内部指针当前指向的给定数组的元素的索引。当前元素可能是起始元素或下一个元素,这取决于光标位置。默认情况下,光标位置位于零索引处,即位于给定数组的起始元素处。 语法: key($array) 参数:该函数接受一个参数$array。它是我们想要找到由内部指针指向的当前元素所在的数组。 返回值:它返回给定数组的当前元素的索引。如果输入数组为空,则key()函数将返回NULL。 --- 下面这个程序说明了PHP中的key()函数: ``` <?php // input array $arr = array("Ram", "Geeta", "Shita", "Ramu"); // Here key function prints the index of // current element of the array. echo "The index of the current element of". " the array is: " . key($arr); ?> ``` output: ``` The index of the current element of the array is: 0 ``` 示例2 ``` <?php // input array $arr=array("Ram", "Geeta", "Shita", "Ramu"); // next function increase the internal pointer // to point next to the current element. next($arr); // Here key function prints the index of // the current element of the array. echo "The index of the current element of". " the array is: " . key($arr); ?> ``` output: ``` The index of the current element of the array is: 1 ``` 示例3: ``` <?php // input array $arr = array("0", "F", "D", "4"); // using next() function to increment // internal pointer two times next($arr); next($arr); // Here key function prints the index of // element of the current array position. echo "The index of the current element of". " the array is: " . key($arr); ?> ``` output: ``` The index of the current element of the array is: 2 ```
上一篇:
extract()函数
下一篇:
list()函数
该分类下的相关小册推荐:
Yii2框架从入门到精通(中)
PHP高性能框架-Swoole
PHP程序员的设计模式
ThinkPHP项目开发实战
Swoole高性能框架-SwooleWorker
Laravel(10.x)从入门到精通(十七)
Laravel(10.x)从入门到精通(三)
Yii2框架从入门到精通(下)
Swoole入门教程
Laravel(10.x)从入门到精通(十六)
Laravel(10.x)从入门到精通(十三)
PHP8入门与项目实战(1)