Skip to content

Instantly share code, notes, and snippets.

@rafi
Created July 17, 2013 13:33
Show Gist options
  • Save rafi/6020588 to your computer and use it in GitHub Desktop.
Save rafi/6020588 to your computer and use it in GitHub Desktop.
<?php
usort($products['mp'], function ($a, $b) {
return $a['priority'] - $b['priority'];
});
// VS
usort($products['mp'], function ($a, $b)
{
return $a['priority'] - $b['priority'];
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment