To reverse sort an enumerated array, use the rsort () function : Array sort « Data Structure « PHP






To reverse sort an enumerated array, use the rsort () function



 <?php
  $emp_names []= "D";
  $emp_names []= "B";
  $emp_names []= "A";
  $emp_names []= "C";
  $emp_names []= "E";

  rsort ($emp_names);
  foreach ($emp_names as $val) {
    echo "$val", "\n";
  }
 ?>

           
       








Related examples in the same category

1.arsort: Sort an array in reverse order and maintain index association
2.Sort associate array
3.sort an associative array on the basis of keys
4.asort () function retains the array's keys in the original state
5.Using the sort () Function
6.Using usort() to Sort a Multidimensional Array by One of Its Fields
7.Using uasort() to Sort a Multdimensional Associative Array by One of Its Fields
8.Using uksort() to Sort an Associative Array by the Length of Its Keys
9.Bubble Sort Variation
10.Sorting with sort()
11.Insertion Sort
12.Pass a second parameter to the sort functions to specify how you want the values sorted
13.Shell Sort
14.Sort an array in reverse order and maintain index association
15.Functions for Sorting Arrays
16.Sorting Multiple Arrays
17.Sorting an Array by Its Keys
18.Sorting an Array by Its Values
19.Use asort() to sort by population.
20.Use ksort() to sort by city name.
21.Using sort to alphabetize
22.array multisort
23.date sort
24.krsort( ) function reverse sorts it by its keys while preserving the values
25.krsort() function: the key values are sorted in reverse order.
26.ksort( ) function sorts array by its keys while preserving the values
27.ksort() function sorts an array according to its key values, maintaining the original index association.
28.sort.php
29.sort() function sorts array elements from lowest to highest value.