PHP 快速導覽 - 核心延伸函數 陣列相關 array_slice()

內建函數 (function) array_slice() 取出陣列 (array) 的子陣列,並回傳這個陣列

函數說明
array array_slice(array $array, int $offset [, int $length = NULL [, bool $preserve_keys = false]])$array 為輸入陣列, $offset 為位移量, $length 為長度。


參數 (parameter) 為陣列,須注意回傳的新的陣列。


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

$output = array_slice($input, 2); 
foreach ($output as $i => $j) {
    echo "$i:$j, ";
}
echo "\n";

$output = array_slice($input, -2, 1);
foreach ($output as $i => $j) {
    echo "$i:$j, ";
}
echo "\n";

$output = array_slice($input, 0, 3);
foreach ($output as $i => $j) {
    echo "$i:$j, ";
}
echo "\n";

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:arrays037.php
    功能:示範 PHP 程式 
    作者:張凱慶
    時間:西元 2013 年 2 月 */
?>


執行結果如下



中英文術語對照
函數function
陣列array
參數parameter


您可以繼續參考
陣列相關函數


相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁


參考資料
http://www.php.net/manual/en/function.array-slice.php

沒有留言: