Advertisement
Guest User

Untitled

a guest
Dec 17th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $inventory = array(
  2.  
  3. array("type"=>"fruit", "price"=>3.50),
  4. array("type"=>"milk", "price"=>2.90),
  5. array("type"=>"pork", "price"=>5.43),
  6.  
  7. );
  8.  
  9. $price = array();
  10. foreach ($inventory as $key => $row)
  11. {
  12. $price[$key] = $row['price'];
  13. }
  14. array_multisort($price, SORT_DESC, $inventory);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement