Skip to content

Instantly share code, notes, and snippets.

@oojacoboo
Created January 18, 2013 05:43
Show Gist options
  • Select an option

  • Save oojacoboo/4562604 to your computer and use it in GitHub Desktop.

Select an option

Save oojacoboo/4562604 to your computer and use it in GitHub Desktop.
$transactions->uasort(function($a, $b) {
if($a->getCreatedAt("U") == $b->getCreatedAt("U"))
return 0;
return ($a->getCreatedAt("U") > $b->getCreatedAt("U")) ? -1 : 1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment