wih Posted October 12, 2007 Share Posted October 12, 2007 Hello. I've got a small problem. I have an array that looks something like this: $smthin = array ( "character1" => 0, "character2" => 0, "character3" => 0, "character4" => 0, "character5" => 0); I add 1 to the value every little while. Then it may look like this: $smthin = array ( "character1" => 1, "character2" => 6, "character3" => 0, "character4" => 1, "character5" => 2); And at this point I'd like to sort the array to look like following: $smthin = array ( "character2" => 6, "character5" => 2, "character1" => 1, "character4" => 1, "character3" => 0); I don't think sort() function will help me with this. That would ruin the keys. Link to comment https://forums.phpfreaks.com/topic/72948-solved-sorting-an-array/ Share on other sites More sharing options...
GingerRobot Posted October 12, 2007 Share Posted October 12, 2007 Indeed. You want asort() which preserves the keys duing the sort. Link to comment https://forums.phpfreaks.com/topic/72948-solved-sorting-an-array/#findComment-367905 Share on other sites More sharing options...
wih Posted October 12, 2007 Author Share Posted October 12, 2007 Oh, thanks. o_o ...Hmm Link to comment https://forums.phpfreaks.com/topic/72948-solved-sorting-an-array/#findComment-368062 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.