最新的Web开发教程
 

PHP reset() Function

<PHP阵列参考

输出阵列中的当前和下一个元素的值,则阵列的内部指针重置为所述阵列中的第一个元素:

<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");

echo current($people) . "<br>";
echo next($people) . "<br>";

echo reset($people);
?>
运行示例»

定义和用法

reset()函数的内部指针移动到所述阵列的第一个元素。

相关方法:

  • current() -在一个数组返回当前元素的值
  • end() -内部指针移动到,并输出最后的元件阵列中的
  • next() -内部指针阵列中移动到,并输出下一个元素
  • prev() -内部指针移动到,并输出先前的元件阵列中的
  • each() -返回当前元素的键和值,和所述内部指针向前移动

句法

reset( array )

参数 描述
array 需要。 指定要使用的数组

技术细节

返回值: 成功则返回数组中的第一元素的值,或者如果FALSE数组为空
PHP版本: 4+

更多示例

实施例1

所有相关的方法的演示:

<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");

echo current($people) . "<br>"; // The current element is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe
echo current($people) . "<br>"; // Now the current element is Joe
echo prev($people) . "<br>"; // The previous element of Joe is Peter
echo end($people) . "<br>"; // The last element is Cleveland
echo prev($people) . "<br>"; // The previous element of Cleveland is Glenn
echo current($people) . "<br>"; // Now the current element is Glenn
echo reset($people) . "<br>"; // Moves the internal pointer to the first element of the array, which is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe

print_r (each($people)); // Returns the key and value of the current element (now Joe), and moves the internal pointer forward
?>
运行示例»

<PHP阵列参考