click below button to copy the code. php tutorial - team
php program Code Explanation :
In this statement “$var1” is an array variable having array values “Lemon, Apple and Grape”.
sort($var1); is the Sort function called over here which is sorting the array values (Lemon,Apple and Grape) in descending order.
In this statement the count function is used for counting the number of values in the array variable “var1” which is being stored in variable $var1_length .
Statement defining the for loop statement for processing the array values.
echo $var1[$x]; This echo statement will print the sorted array values from the variable “$var1”.
php coding Sample Output :
Output of the above php sort code shows the php array values (Lemon, Apple and Grape) sorted in descending order (Lemon, Grape and Apple) as shown here.