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

I have two different arrays. One array, a, for a list of people. My other array, b, for a list of their ages. I go to sort b by number and then reverse it so it goes in descending order. I got to this part okay.

How do I sort a (a list of people's names) so that the same values are still paired up with the sorted list?

Example:

a contains Bob, Sue, Phil, and Jenny respectively

b contains 15, 12, 13, and 13 respectively.

I want my outcome to be:

a contains Bob, Jenny, Phil, and Sue respectively

b contains 15, 13, 13, and 12 respectively

share|improve this question

2 Answers

up vote 2 down vote accepted

http://php.net/manual/en/function.array-multisort.php

using example #1 in the reference:

$a = array('Bob', 'Sue', 'Phil', 'Jenny');
$b = array(15, 12, 13, 13);
array_multisort($a, $b);
print_r($a);
> Array
 (
 [0] => Bob
 [1] => Jenny
 [2] => Phil
 [3] => Sue
 )
print_r($b);
> Array
 (
 [0] => 15
 [1] => 13
 [2] => 13
 [3] => 12
 )
share|improve this answer
If using array_multisort their corresponding ages won't match. – Mar Cejas Mar 29 '12 at 1:16
2  
Please add context to the link you've provided. – Josh Mar 29 '12 at 1:18
Can you provide an example? I cannot seem to get this to work. – JavaCoder-1337 Mar 29 '12 at 1:20
Works now! Thank you! – JavaCoder-1337 Mar 29 '12 at 1:25
ok, added the example anyway ;) – msonsona Mar 29 '12 at 1:32
show 2 more comments

Why not just use:

$arr = array('Bob'=>15,'Sue'=>12,'Phil'=>13,'Jenny'=>13);

Then you can sort smoothly.

share|improve this answer
2  
Example: $c = array_combine($a, $b); asort($c); – bfavaretto Mar 29 '12 at 1:28
1  
having array structured this way will also make it simple and scalable. On this structure you can reverse the array php.net/manual/en/function.rsort.php or sort the array php.net/manual/en/function.ksort.php using php functions and not worry abt how to reflect the changes to your other aray – Kishor Kundan Mar 29 '12 at 1:57

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.