當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。