this is my array:
$myarr = array(
4 => 3,
2 => 9,
7 => 8,
1 => 1
);
when i do :
asort($myarr);
$myarr becomes:
array(
1 => 1,
2 => 9,
4 => 3,
7 => 8
);
This is not how it is supposed to work,right? the values should be sorted and keys maintained, while the reverse is happening - just like ksort. What can the problem be?
Please help me out.
Thanks