問題:
確定最有效的獲取方法數組的初始“N”個元素。
解決方案:
利用array_slice()
如PHP 手冊中所示:
<code class="php">$input = array("a", "b", "c", "d", "e"); $output = array_slice($input, 0, 3); // Returns "a", "b", and "c"</code>
警告:
對於具有有意義索引的數組,請注意array_slice() 可以更改和重新排序數字索引。若要保留這些值,請將「preserve_keys」標誌設為 true。
範例(使用保留的鍵):
<code class="php">$output = array_slice($input, 2, 3, true);</code>
輸出:
array([3]=> 'c', [4]=> 'd', [5]=> 'e');
以上是如何在 PHP 中有效率地檢索數組的前 N 個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!