$a = array(0=>\'a\',1=>\'b\',2=>\'c\', 3=>\'d\');
I want to change the order to be 3,2,0,1:
3,2,0,1
$a = array(3=>\
here is how
krsort($a);