Skip to content

Instantly share code, notes, and snippets.

@twentyfortysix
Created February 25, 2021 22:29
Show Gist options
  • Save twentyfortysix/aee48630792bf2954f20d6541de3de56 to your computer and use it in GitHub Desktop.
Save twentyfortysix/aee48630792bf2954f20d6541de3de56 to your computer and use it in GitHub Desktop.
<?php
// 1, 2, asc
usort($mix, function ($item1, $item2) {
return $item1->post_date <=> $item2->post_date;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment