array_splice

作用:移除数组的一部分,并将其替换为其他内容.
return array(由提取的元素组成的数组);

array_splice (array &$input,$offset,$length = null, $replacement = null)
$input array 输入数组
$offset int 偏移量
  偏移量为负数时,从右边开始数
$length int 长度,删除的元素个数
  等于0,则直插入不删除
$replacement mixed 替换的元素数组或字符串
  
 
上一篇:php – 如何删除另一个数组中包含的数组元素


下一篇:关于`split` `splice` `slice`的区别