$a = array( "a" => "Volvo", "b" => "BMW", "c" => "Toyota" ); array_reverse($a) #output : Array ( [c] => Toyota, [b] => BMW, [a] => Volvo )