PHP | Ds\Set slice() Function Last Updated : 16 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The Ds\Set::slice() function is an inbuilt function in PHP which is used to return the sub-set of given range. Syntax: Ds\Set public Ds\Set::slice ( int $index [, int $length ] ) Parameters: This function accepts two parameters as mentioned above and described below: $index: This parameter holds the starting index of sub-set. The index value can be positive and negative. If the index value is positive then it starts at the index of the set and if the index value is negative then set starts from ends. $length: This parameter holds the length of sub-set. This parameter can take positive and negative values. If length is positive then sub-set size is equal to a given length and if the length is negative then the set will stop that many values from the end. Return Value: This function returns the sub-set of given range. Below programs illustrate the Ds\Set::slice() function in PHP: Program 1: php <?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)); ?> Output: 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 ) Program 2: php <?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)); ?> Output: Ds\Set Object ( [0] => for ) Ds\Set Object ( ) Ds\Set Object ( [0] => Geeks [1] => GFG [2] => Abc ) Reference: https://www.php.net/manual/en/ds-set.slice.php Create Quiz Comment R R_Raj Follow 0 Improve R R_Raj Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-ds_set Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like