The Ds\Set::sorted() function is an inbuilt function in PHP which is used to return a sorted copy of given set. Syntax:
Ds\Set public Ds\Set::sorted ([ callable $comparator ])
Parameters: This function accepts a comparator function according to which the values will be compared while sorting the Set. The comparator should return the following values based on the comparison of two values passed to it as a parameter:
- 1: if the first element is expected to be less than the second element.
- -1: if the first element is expected to be greater than the second element.
- 0: if the first element is expected to be equal to the second element.
Return value: It returns the sorted copy of the given set. Below programs illustrate the Ds\Set::sorted() function in PHP: Program 1:
php
<?php
$set = new \Ds\Set([20, 10, 30]);
print_r( $set ->sorted());
?>
|
Output:
Ds\Set Object
(
[0] => 10
[1] => 20
[2] => 30
)
Program 2:
php
<?php
$set = new \Ds\Set([2, 3, 6, 5, 7, 1, 4]);
$sorted = $set ->sorted( function ( $a , $b ) {
return $b <=> $a ;
});
print_r( $sorted );
?>
|
Output:
Ds\Set Object
(
[0] => 7
[1] => 6
[2] => 5
[3] => 4
[4] => 3
[5] => 2
[6] => 1
)
Reference: https://www.php.net/manual/en/ds-set.sorted.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Mar, 2022
Like Article
Save Article