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

內建函數 (function) array_splice() 置換陣列 (array) 的元素,並回傳取出元素集合成的新陣列

函數說明
array array_splice(array &$input, int $offset [, int $length = 0 [, mixed $replacement]])$array 為輸入陣列, $offset 為位移量, $length 為長度, $replacement 為要替換的元素。


參數 (parameter) 有四個,最少要提供兩個,須注意回傳的新陣列為取出的元素,原陣列會直接被修改。


舉例如下
<?php
$input = array("red", "green", "blue", "yellow");
foreach ($input as $i => $j) {
    echo "$i:$j, ";
}
echo "\n";

array_splice($input, -1, 1, array("black", "maroon"));
foreach ($input as $i => $j) {
    echo "$i:$j, ";
}
echo "\n";

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

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


執行結果如下



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


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


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


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

沒有留言: