php sort associative array by specific value

67

//php 7+
usort($inventory, function ($item1, $item2) {
    return $item1['price'] <=> $item2['price'];
});
$price = array_column($inventory, 'price');

array_multisort($price, SORT_DESC, $inventory);

Comments

Submit
0 Comments