例
現在の要素のキーと値を戻し、前方の内部ポインタを移動します。
<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");
print_r (each($people));
?>
»実行例 定義と使用法
each()関数は、現在の要素のキーと値を返し、フォワード内部ポインタを移動させます。
この要素のキーと値は、4つの要素を持つ配列に返されます。 二つの要素(1 and Value)要素値に対して、二つの要素(0 and Key)要素キーの。
関連する方法:
- current() -配列内の現在の要素の値を返します
- end() -内部ポインタを移動し、出力する、配列の最後の要素
- next() -配列に、次の要素を内部ポインタを移動し、出力します
- prev() -内部ポインタを移動し、出力する、アレイ内の前の要素
- reset() -配列の最初の要素への内部ポインタを移動させます
構文
each( array )
パラメーター | 説明 |
---|---|
array | 必須。 使用するための配列を指定します |
技術的な詳細
戻り値: | 現在の要素のキーと値を返します。 この要素のキーと値は、4つの要素を持つ配列に返されます。 二つの要素(1 and Value)要素値に対して、二つの要素(0 and Key)要素キーの。 これ以上の配列要素が存在しない場合、この関数はFALSEを返します |
---|---|
PHPバージョン: | 4+ |
その他の例
例1
ページの上部に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の配列参照