Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
works as advertised for me – Gordon Nov 2 '10 at 11:44
I think you dont give the right codes, ,nsted working pseudo code. Did you run these in your server? – nerkn Nov 2 '10 at 15:52

2 Answers

up vote 5 down vote accepted

Works fine to me : http://codepad.org/o6pZ8ess

result :

array(4) {
  [1]=>
  int(1)
  [4]=>
  int(3)
  [7]=>
  int(8)
  [2]=>
  int(9)
}
share|improve this answer
+1 for introducing me to codepad! :) – Ed.C Nov 2 '10 at 11:44
Pretty limited (can't open/write file and some functions are missing for security) but works well for little test like these ;) – Shikiryu Nov 2 '10 at 11:46
thanks, codepad was helpful – Prashant Nov 2 '10 at 12:20

Works fine for me, did you try:

asort($myarr, SORT_NUMERIC);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.