Advertisement
BakerMan

Sort Tickets in Price Ascending Order - WooTickets 1.0.1

Mar 19th, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. // Let's order the tickets in ascending 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