Ds\Set::slice() 函數可以返回給定範圍的 sub-set。
用法
public Ds\Set Ds\Set::slice( int $index [, int $length ] )
Ds\Set::slice() 函數可以創建給定範圍的 sub-set。
例子1
<?php
$set = new \Ds\Set([1, 3, 5, 7, 10, 12, 16]);
print_r($set->slice(2));
print_r($set->slice(1, 2));
print_r($set->slice(0, 3));
?>
例子2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India", "Tutorix"]);
print_r($set->slice(2));
print_r($set->slice(2, 0));
print_r($set->slice(0, 3));
?>
相關用法
- PHP Ds Set sort()用法及代碼示例
- PHP Ds Set count()用法及代碼示例
- PHP Ds Set intersect()用法及代碼示例
- PHP Ds Set remove()用法及代碼示例
- PHP Ds Set toArray()用法及代碼示例
- PHP Ds Set merge()用法及代碼示例
- PHP Ds Set reduce()用法及代碼示例
- PHP Ds Set reversed()用法及代碼示例
- PHP Ds Set contains()用法及代碼示例
- PHP Ds Set filter()用法及代碼示例
- PHP Ds Set add()用法及代碼示例
- PHP Ds Set join()用法及代碼示例
- PHP Ds Set get()用法及代碼示例
- PHP Ds Set reverse()用法及代碼示例
- PHP Ds Set capacity()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Set slice() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。