当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Set slice()用法及代码示例


Ds \ Set::slice()函数是PHP中的内置函数,用于返回给定范围的sub-set。

用法:

Ds\Set public Ds\Set::slice ( int $index [, int $length ] )

参数:该函数接受上述和以下所述的两个参数:


  • $index:该参数保存sub-set的起始索引。索引值可以为正也可以为负。如果索引值为正,则从集合的索引处开始;如果索引值为负,则从端点开始。
  • $length:此参数保存sub-set的长度。此参数可以取正值和负值。如果length为正数,则sub-set大小等于给定的长度;如果length为负数,则集合将从末尾停止那么多值。

返回值:此函数返回给定范围的sub-set。

以下示例程序旨在说明PHP中的Ds \ Set::slice()函数:

程序1:

<?php  
  
// Create new set  
$set = new \Ds\Set([1, 3, 6, 9, 10, 15, 20]);  
  
// Use slice() function to create  
// sub-set and display it  
print_r($set->slice(2));  
  
print_r($set->slice(1, 2));  
  
print_r($set->slice(2, -2));  
  
?> 
输出:
Ds\Set Object
(
    [0] => 6
    [1] => 9
    [2] => 10
    [3] => 15
    [4] => 20
)
Ds\Set Object
(
    [0] => 3
    [1] => 6
)
Ds\Set Object
(
    [0] => 6
    [1] => 9
    [2] => 10
)

程序2:

<?php  
  
// Create new set 
$set = new \Ds\Set(["Geeks", "GFG", "Abc", "for"]);  
  
// Use slice() function to create  
// sub-set and display it  
print_r($set->slice(3));  
  
print_r($set->slice(2, 0));  
  
print_r($set->slice(0, 3));  
  
?> 
输出:
Ds\Set Object
(
    [0] => for
)
Ds\Set Object
(
)
Ds\Set Object
(
    [0] => Geeks
    [1] => GFG
    [2] => Abc
)

参考: https://www.php.net/manual/en/ds-set.slice.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Set slice() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。