current() 函数用于返回数组中的当前元素的值。在调用该函数之前,需要使用 reset() 函数将数组的内部指针指向第一个元素。
current()
reset()
语法:
current(array)
示例:
$colors = array("red", "green", "blue"); echo current($colors); // 输出:red next($colors); echo current($colors); // 输出:green