作用:移除数组的一部分,并将其替换为其他内容.
return array(由提取的元素组成的数组);
array_splice (array &$input,$offset,$length = null, $replacement = null)
$input array 输入数组
$offset int 偏移量
偏移量为负数时,从右边开始数
$length int 长度,删除的元素个数
等于0,则直插入不删除
$replacement mixed 替换的元素数组或字符串
2024-03-14 14:44:34
作用:移除数组的一部分,并将其替换为其他内容.
return array(由提取的元素组成的数组);
array_splice (array &$input,$offset,$length = null, $replacement = null)
$input array 输入数组
$offset int 偏移量
偏移量为负数时,从右边开始数
$length int 长度,删除的元素个数
等于0,则直插入不删除
$replacement mixed 替换的元素数组或字符串