例
出力配列内の現在の要素の値:
<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");
echo current($people) . "<br>";
?>
»実行例 定義と使用法
current()関数は、配列内の現在の要素の値を返します。
すべての配列は、その内部ポインタ有する"current"配列に挿入された第一の要素に初期化された要素を、。
Tip:この関数は、配列に内部ポインタを移動しません。
関連する方法:
- end() -内部ポインタを移動し、出力する、配列の最後の要素
- next() -配列に、次の要素を内部ポインタを移動し、出力します
- prev() -内部ポインタを移動し、出力する、アレイ内の前の要素
- reset() -配列の最初の要素への内部ポインタを移動させます
- each() -現在の要素のキーと値を返し、フォワード内部ポインタを移動させます
構文
current( 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の配列参照