PHP中的current()函数
该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