Given this array:
$inventory = array( array(\"type\"=>\"fruit\", \"price\"=>3.50), array(\"type\"=>\"milk\", \"price\"=>2.90), array(\"
try this:
$prices = array_column($inventory, 'price'); array_multisort($prices, SORT_DESC, $inventory); print_r($inventory);