Jump to content

[SOLVED] Sorting an array


wih

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.