📜  PHP | key()函数

📅  最后修改于: 2022-05-13 01:56:53.203000             🧑  作者: Mango

PHP | key()函数

key()函数是PHP中的一个内置函数,用于返回内部指针当前指向的给定数组元素的索引。当前元素可能是开始或下一个元素,这取决于光标位置。默认情况下,光标位置在零索引处,即在给定数组的起始元素处。

句法:

key($array)

参数:此函数接受单个参数$array 。它是我们想要找到内部指针指向的当前元素的数组。

返回值:它返回给定数组的当前元素的索引。如果输入数组为空,则 key()函数将返回 NULL。

下面的程序说明了PHP中的 key()函数:

程序 1


输出:

The index of the current element of the array is: 0

方案二


输出:

The index of the current element of the array is: 1

程序 3


输出:

The index of the current element of the array is: 2

参考:
PHP 。 PHP