從數組中檢索前 N 個元素
如何在 PHP 中高效地從數組中提取前 N 個元素?
解:
最有效的方法是利用 array_slice() 函數。以下是一個範例:
<code class="php">$input = array("a", "b", "c", "d", "e"); $output = array_slice($input, 0, 3); // returns "a", "b", and "c"</code>
注意事項:
當陣列索引有意義時,就會出現一個潛在問題。 array_slice() 重設並重新排序數字索引。若要保留原始索引,請將 Reserve_keys 標誌設為 true 作為第四個參數。
範例:
<code class="php">$output = array_slice($input, 2, 3, true);</code>
輸出:
<code class="php">array([3]=>'c', [4]=>'d', [5]=>'e');</code>
以上是如何在 PHP 中有效率地從陣列中提取前 N 個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!