1

Right now I have two arrays - $totaltimeplayed and $gameslist where each value in $totaltimeplayed refers to time spent playing the corresponding game in $gameslist. I want to sort the time spent playing a game in $totaltimeplayed, and then accordingly sort the games in $gameslist.

My code so far:

arsort($totaltimeplayed);
$key_order = array_keys($totaltimeplayed);
$sort_games = array_combine($key_order, $gameslist);
ksort($sort_games);

When I use print_r(), it seems the sorting of $gameslist is arbitrary and in no particular order.

What is the problem?

1 Answer 1

2

I love array_multisort:

array_multisort($totaltimeplayed, SORT_DESC, $gameslist);
Sign up to request clarification or add additional context in comments.

1 Comment

Major ID 10 T error. The PHP.net manual made it seem like arsort() automatically sorted in descending order. Thank you!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.