array_slice 从数组中取出一段 &reftitle.description; arrayarray_slice arrayarray intoffset intlength&null; boolpreserve_keysfalse array_slice 返回根据 offsetlength 参数所指定的 array 数组中的一段序列。 &reftitle.parameters; array 输入的数组。 offset 如果 offset 非负,则序列将从 array 中的此偏移量开始。如果 offset 为负,则序列将从 array 中距离末端这么远的地方开始。 length 如果给出了 length 并且为正,则序列中将具有这么多的单元。如果给出了 length 并且为负,则序列将终止在距离数组末端这么远的地方。如果省略,则序列将从 offset 开始一直到 array 的末端。 preserve_keys 注意 array_slice 默认会重新排序并重置数组的数字索引。你可以通过将 preserve_keys 设为 &true; 来改变此行为。 &reftitle.returnvalues; 返回其中一段。 &reftitle.changelog; &Version; &Description; 5.0.2 增加了可选参数 preserve_keys &reftitle.examples; <function>array_slice</function> 例子 ]]> &example.outputs; c [1] => d ) Array ( [2] => c [3] => d ) ]]> &reftitle.seealso; array_splice unset array_chunk