array

$tagHolder[$row['id']] = array(


        "name" => $row['name'],
        "primary" => $row['primary'],
        "child" => $row['child'],
        "order" => $row['order']

    );

usort function

function sortAsc($x, $y){
if ( $x['order'] == $y['order'] )
 return 0;
else if ( $x['order'] < $y['order'] )
 return -1;
else
 return 1;
}

Will order by 'order' BUT will not keep the original $row['id'] keys, instead it reassigns the first prosition as 0 and so on. How can I make the sort function sort but keep the $row['key'] untouched?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Use uasort instead of usort to keep the key association.

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.