PHPのend()関数
end()関数は、配列の内部ポインタを最後の要素に設定します
構文
end(arr)
パラメータ
-
到着 −指定された配列
戻る
end()関数は、成功すると、配列の最後の要素の値を返します。配列が空の場合はFALSEを返します。
例
以下は例です-
<?php $os = array('windows', 'mac', 'linux', 'solaris'); echo end($os); ?>
出力
以下は出力です-
solaris
例
別の例を見てみましょう-
<?php $a = array('one', 'two', 'three', 'four', 'five', 'six' ); echo current($a)."\n"; echo next($a)."\n"; echo current($a)."\n"; echo end($a)."\n"; echo current($a)."\n"; ?>
出力
以下は出力です-
one two two six six
-
PHPのnext()関数
next()関数は、配列の内部配列ポインターを次の要素に進めます。 構文 next(arr) パラメータ 到着 −指定された配列 戻る next()関数は、成功すると、配列内の次の要素の値を返します。使用可能な要素がなくなると、FALSEが返されます。 例 以下は例です- <?php $os = array('windows', 'mac', 'linux', 'solaris'); echo current($os) . "<br>"; echo next($os); ?>
-
PHPのarray()関数
PHPのarray()関数は配列を作成します。 PHPでは配列には3つのタイプがあります。 インデックス付き配列- 数値インデックス付きの配列です 連想配列- 名前付きキーを持つ配列です 多次元配列- 1つ以上のアレイを持つアレイです 構文 // array with numeric index i.e. Indexed arrays array(value1,value2...); // array with named keys i.e. associative arrays array(key1 => value1, key2 => value2...