PHP | current()函数
current()函数是PHP中的内置函数。
- 它用于返回内部指针当前指向的数组中元素的值。
- current()函数在返回值后不会增加或减少内部指针。
- 在PHP中,所有数组都有一个内部指针。该内部指针指向该数组中的某个元素,该元素称为数组的当前元素。
- 通常,当前元素是数组中第一个插入的元素。
句法:
current($array)
参数: current()函数接受单个参数$array 。它是我们要查找当前元素的数组。
返回值:它返回内部指针当前指向的数组中元素的值。如果数组为空,则 current()函数返回 FALSE。
例子:
Input : current(array("John", "b", "c", "d"))
Output : John
Explanation : Here as we see that input array contains
many elements and the output is "John" because first
element is John and current() function returns
the element to which internal pointer is currently
pointing.
Input: current(array("abc", "123", "7"))
Output: abc
下面的程序说明了PHP中的 current()函数:
程序 1 :
PHP
PHP
输出:
Ram
方案二:
PHP
输出:
Sham
Mac
Mac
Jhon
Adwin
Adwin
注意: current()函数在数组为空即不包含任何元素时返回 False,当内部指针超出边界即超出最后一个元素的末尾时它也返回 false。
参考:
http:// PHP.net/manual/en/函数.current。 PHP