Show Output
Example of Sorting PHP Associative Array Values in Ascending Order
"banana", "a"=>"apple", "d"=>"dog", "c"=>"cat"); // Sorting the array by value asort($fruits); print_r($fruits); ?>