例
返回當前元素的鍵和值,並向前移動內部指針:
<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");
print_r (each($people));
?>
運行示例» 定義和用法
的each()函數返回當前元素的鍵和值,和內部指針向前移動。
該元素的鍵和值被返回在數組中具有四個元件。 兩個元件(1 and Value)的元素的值,並且兩個元件(0 and Key)的元素鍵。
相關方法:
- current() -在一個數組返回當前元素的值
- end() -內部指針移動到,並輸出最後的元件陣列中的
- next() -內部指針陣列中移動到,並輸出下一個元素
- prev() -內部指針移動到,並輸出先前的元件陣列中的
- reset() -內部指針移動到所述陣列的所述第一元件
句法
each( array )
參數 | 描述 |
---|---|
array | 需要。 指定要使用的數組 |
技術細節
返回值: | 返回當前元素的鍵和值。 該元素的鍵和值被返回在數組中具有四個元件。 兩個元件(1 and Value)的元素的值,並且兩個元件(0 and Key)的元素鍵。 如果沒有更多的數組元素此函數返回FALSE |
---|---|
PHP版本: | 4+ |
更多示例
實施例1
同樣的例子作為一個在頁面的頂部,但具有循環到整個陣列輸出:
<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");
reset($people);
while (list($key, $val) = each($people))
{
echo "$key => $val<br>";
}
?>
運行示例» 實施例2
所有相關的方法的演示:
<?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陣列參考