例
出力配列内の現在および次の要素の値は、配列内の最初の要素を配列の内部ポインタをリセットします。
<?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の配列参照