PHP Ds\Sequence sort() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The Ds\Sequence::sort() function is an inbuilt function in PHP that is used to sort the sequence element in the same place. Syntax: void abstract public Ds\Sequence::sort ([ callable $comparator ] ) Parameters: This function accepts a single parameter $comparator which is used to hold the comparison function. The comparison function returns an integer value less than, greater than, or equal to zero. Return value: This function does not return any values. Below programs illustrate the Ds\Sequence::sort() function in PHP: Program 1: php <?php // Create new sequence $seq = new \Ds\Vector([2, 4, 1, 9, 6, 5, 12, 9]); // Use sort() function to sort // the sequence element $seq->sort(); print_r($seq); ?> Output: Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 4 [3] => 5 [4] => 6 [5] => 9 [6] => 9 [7] => 12 ) Program 2: php <?php // Create new sequence $seq = new \Ds\Vector([2, 4, 1, 9, 6, 5, 12, 9]); // Use sort() function to sort // the sequence element $seq->sort(function($x, $y) { return $y <=> $x; }); print_r($seq); ?> Output: Ds\Vector Object ( [0] => 12 [1] => 9 [2] => 9 [3] => 6 [4] => 5 [5] => 4 [6] => 2 [7] => 1 ) Reference: https://www.php.net/manual/en/ds-sequence.sort.php Create Quiz Comment V vijay_raj Follow 0 Improve V vijay_raj Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-DS\Collection 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