例
輸出陣列中的當前和下一個元素的值,則陣列的內部指針重置為所述陣列中的第一個元素:
<?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陣列參考