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