该current()
函数返回数组中的当前元素。
current(arr)
arr-指定的数组。需要。
该current()
函数返回数组中当前元素的值。
以下是一个例子-
<?php $arr = array("one", "two"); echo current($arr); ?>
输出结果
以下是输出-
one
让我们看另一个例子-
<?php $a = array('one', 'two', 'three', 'four', 'five', 'six' ); echo current($a)."\n"; echo next($a)."\n"; echo current($a)."\n"; ?>
输出结果
以下是输出-
one two two