Advertisement
BakerMan

Sort Tickets in Price Descending Order (WooTickets 1.0.1)

Mar 22nd, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Let's order the tickets in descending order by price
  2. usort($tickets, function($p, $q) {
  3.     if ($p->price < $q->price) return 1;
  4.     if ($p->price > $q->price) return -1;
  5.     return 0;
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement