Consider the following associative array:
$arrEmployees['marco polo'] = array(age => 40, service => 5);
$arrEmployees['jane austen'] = array(age => 30, service => 9);
$arrEmployees['carl marx'] = array(age => 30, service => 7);
how can I use array_multisort to order by age desc and service asc? Example #3 in php.net seems to work only with numeric indexes...
gives
which is correct, and all associative indexes are still intact