background image

php 数组操作实例之接合数组

本文介绍下,

php 操作数组之接合数组的例子,主要用到 php 的 array_splice 函数,有需要

的朋友参考下吧。
array_splice()函数
删除数组中从

offset 开始到 offset+length 结束的所有元素,并以数组的形式返回所删除的元

素。
其形式为:
array array_splice ( array array , int offset[,length[,array replacement]])   
offset 为正值时,则接合将从距数组开头的 offset 位置开始,offset 为负值时,接合将从距
数组末尾的

offset 位置开始。如果忽略可选的 length 参数,则从 offset 位置开始到数组结束

之间的所有元素都将被删除。
如果给出了

length 且为正值,则接合将在距数组开头的 offset + leng th 位置结束。

相反,如果给出了

length 且为负值,则结合将在距数组开头的 count(input_array)-length 的

位置结束。

1:

<?php
//接合数组
//by www.jbxue.com
$fruits = array("Apple", "Banana", "Orange", "Pear", "Grape", "Lemon", "Watermelon");  
$subset = array_splice($fruits, 4);  
  
print_r($fruits);  
print_r($subset);  
  
// output  
// Array ( [0] => Apple [1] => Banana [2] => Orange [3] => Pear )   
// Array ( [0] => Grape [1] => Lemon [2] => Watermelon )  
?>
可以使用可选参数

replacement 来指定取代目标部分的数组。

2:

<?php
//接合数组之可选参数 replacement
//by www.jbxue.com
$fruits = array("Apple", "Banana", "Orange", "Pear", "Grape", "Lemon", "Watermelon");  
$subset = array_splice($fruits, 2, -1, array("Green Apple", "Red Apple"));  
  
print_r($fruits);  
print_r($subset);  
  
// output  
// Array ( [0] => Apple [1] => Banana [2] => Green Apple [3] => Red Apple [4] => Watermelon ) 
// Array ( [0] => Orange [1] => Pear [2] => Grape [3] => Lemon )  
?>