php数组(二十三) array_splice
array_splice — 去掉数组中的某一部分并用其它值取代
array_slice(
array
int
int
bool
): array
array
$array,int
$offset,int
$length = null,bool
$preserve_keys = false): array
array_slice() 返回根据 offset 和 length 参数所指定的 array 数组中的一段序列。
参数
array-
输入的数组。
offset-
如果
offset非负,则序列将从array中的此偏移量开始。如果
offset为负,则序列将从array中距离末端这么远的地方开始。注意:
参数
offset标识的是数组中的位置,而不是键。 length-
如果给出了
length并且为正,则序列中将具有这么多的单元。如果 array 比
length要短,只会保留有效的数组单元。如果给出了
length并且为负,则序列将终止在距离数组末端这么远的地方。如果省略,则序列将从
offset开始一直到array的末端。 preserve_keys- 示例:
<?php
$input = array("a", "b", "c", "d", "e");
$output = array_slice($input, 2); // returns "c", "d", and "e"
$output = array_slice($input, -2, 1); // returns "d"
$output = array_slice($input, 0, 3); // returns "a", "b", and "c"
// note the differences in the array keys
print_r(array_slice($input, 2, -1));
print_r(array_slice($input, 2, -1, true));
?>
输出:
Array
(
[0] => c
[1] => d
)
Array
(
[2] => c
[3] => d
)
posted on 2021-08-31 21:07 1450811640 阅读(73) 评论(0) 收藏 举报
浙公网安备 33010602011771号