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