PHP中的reset()函数
该reset()
函数将数组的内部指针设置为其第一个元素。它返回第一个数组元素的值。如果数组为空,则返回FALSE
语法
reset(arr)
参数
arr-要使用的数组
返回
该reset()
函数返回第一个数组元素的值。如果数组为空,则返回FALSE。
示例
以下是一个例子-
<?php $arr = array("one", "two","three", "four", ); echo current($arr); echo next($arr); echo next($arr); echo reset($arr); echo next($arr); ?>
输出结果
one two three one two