I have an array like the following:

Array
(
    [0] => Array
        (
            'name' => "Friday"
            'weight' => 6
        )
    [1] => Array
        (
            'name' => "Monday"
            'weight' => 2
        )
)

I would like to grab the last values in that array (the 'weight'), and use that to sort the main array elements. So, in this array, I'd want to sort it so the 'Monday' element appears before the 'Friday' element.

link|improve this question

possible duplicate of most effecient way to order an array by sub elements? – Daniel Vandersluis Sep 13 '10 at 15:52
Yes, this looks to be the case. I looked at that issue before this, but didn't quite understand it until reading through the replies to this thread... ah well :( – geerlingguy Sep 24 '10 at 18:31
feedback

4 Answers

up vote 10 down vote accepted

You can use usort as:

function cmp($a, $b) {
   return $a['weight'] - $b['weight'];
}

usort($arr,"cmp");
link|improve this answer
2  
You can simply use return $a['weight'] - $b['weight'];. – Gumbo Sep 13 '10 at 15:36
Ahhhhhhh! Nested ternary operators! – Rocket Sep 13 '10 at 15:36
@Gumbo: True..just realized that :) – codaddict Sep 13 '10 at 15:37
Hmm... looks like the way to go. – geerlingguy Sep 13 '10 at 16:16
feedback

try this: http://php.net/manual/en/function.usort.php

link|improve this answer
feedback

Agree with usort, I also sometimes use array_multisort (http://ca2.php.net/manual/en/function.usort.php) example 3, sorting database results. You could do something like:

<?php
$days = array(
  array('name' => 'Friday', 'weight' => 6),
  array('name' => 'Monday', 'weight' => 2),
);

$weight = array();
foreach($days as $k => $d) {
  $weight[$k] = $d['weight'];
}

print_r($days);

array_multisort($weight, SORT_ASC, $days);

print_r($days);
?>

Output:

Array
(
    [0] => Array
        (
            [name] => Friday
            [weight] => 6
        )

    [1] => Array
        (
            [name] => Monday
            [weight] => 2
        )

)
Array
(
    [0] => Array
        (
            [name] => Monday
            [weight] => 2
        )

    [1] => Array
        (
            [name] => Friday
            [weight] => 6
        )

)
link|improve this answer
feedback

Here's a cool function that might help:

function subval_sort($a,$subkey,$sort) {
    foreach($a as $k=>$v) {
        $b[$k] = strtolower($v[$subkey]);
    }
    if($b)
    {
        $sort($b);
        foreach($b as $key=>$val) {
            $c[] = $a[$key];
        }
        return $c;
    }
}

Send in the array as $a the key as $subkey and 'asort' or 'sort' for the $sort variable

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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