配列の最初のN個の要素を取得しますか?


回答:


360

array_slice()を使用

これはPHPマニュアルのです:array_slice

$input = array("a", "b", "c", "d", "e");
$output = array_slice($input, 0, 3);   // returns "a", "b", and "c"

小さな問題のみです

配列のインデックスが意味のある場合はarray_slice、が数値配列のインデックスをリセットして並べ替えることを覚えておいてください。これを回避するには、preserve_keysフラグをに設定する必要がありtrueます。(4番目のパラメーター、5.0.2以降で使用可能)。

例:

$output = array_slice($input, 2, 3, true);

出力:

array([3]=>'c', [4]=>'d', [5]=>'e');



4

array_slice()を試すのが最善です。以下に例を示します。

<?php
$input = array("a", "b", "c", "d", "e");

$output = array_slice($input, 2);      // returns "c", "d", and "e"
$output = array_slice($input, -2, 1);  // returns "d"
$output = array_slice($input, 0, 3);   // returns "a", "b", and "c"

// note the differences in the array keys
print_r(array_slice($input, 2, -1));
print_r(array_slice($input, 2, -1, true));
?>

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.