Php/docs/function.current
来自菜鸟教程
current
(PHP 4, PHP 5, PHP 7)
current — 返回数组中的当前单元
参数
array
- 这个数组。
返回值
current() 函数返回当前被内部指针指向的数组单元的值,并不移动指针。如果内部指针指向超出了单元列表的末端,current()
返回 false
。
范例
Example #1 使用 current() 系列函数的例子
<?php$transport = array('foot', 'bike', 'car', 'plane');$mode = current($transport); // $mode = 'foot';$mode = next($transport); // $mode = 'bike';$mode = current($transport); // $mode = 'bike';$mode = prev($transport); // $mode = 'foot';$mode = end($transport); // $mode = 'plane';$mode = current($transport); // $mode = 'plane';$arr = array();var_dump(current($arr)); // bool(false)$arr = array(array());var_dump(current($arr)); // array(0) { }?>
注释
Note:
如果数组包含 boolean
false
的单元则本函数在碰到这个单元时也返回false
,使得不可能判断是否到了此数组列表的末端。 要正确遍历可能含有空单元的数组,用 each() 函数。