Ds\Vector::slice
Ds\Vector::slice
(PECL ds >= 1.0.0)
Ds \ Vector :: slice - 返回给定范围的子向量。
描述
public Ds\Vector Ds\Vector::slice ( int $index [, int $length ] )
创建给定范围的子向量。
参数
index
子向量开始的索引。
如果为正值,则向量将从向量中的该索引处开始。如果为负数,矢量将从最后开始。
length
如果给定长度并且是正数,则结果向量将具有多达其中的许多值。如果长度导致溢出,则只包含向量结尾的值。如果给定长度并且是负数,则矢量将从最后停止许多值。如果未提供长度,则结果向量将包含索引和向量结尾之间的所有值。
返回值
给定范围的子向量。
例子
示例#1 Ds \ Vector :: slice()示例
<?php
$vector = new \Ds\Vector(["a", "b", "c", "d", "e"]
// Slice from 2 onwards
print_r($vector->slice(2)
// Slice from 1, for a length of 3
print_r($vector->slice(1, 3)
// Slice from 1 onwards
print_r($vector->slice(1)
// Slice from 2 from the end onwards
print_r($vector->slice(-2)
// Slice from 1 to 1 from the end
print_r($vector->slice(1, -1)
?>
上面的例子会输出类似于:
Ds\Vector Object
(
[0] => c
[1] => d
[2] => e
)
Ds\Vector Object
(
[0] => b
[1] => c
[2] => d
)
Ds\Vector Object
(
[0] => b
[1] => c
[2] => d
[3] => e
)
Ds\Vector Object
(
[0] => d
[1] => e
)
Ds\Vector Object
(
[0] => b
[1] => c
[2] => d
)
← Ds\Vector::shift
Ds\Vector::sort →