Sorts of Dates
by in CodeSOD on 2024-03-28We've seen loads of bad date handling, but as always, there's new ways to be surprised by the bizarre inventions people come up with. Today, Tim sends us some bad date sorting, in PHP.
// Function to sort follow-ups by Date
function cmp($a, $b) {
return strcmp(strtotime($a["date"]), strtotime($b["date"]));
}
// Sort the follow-ups by Date
usort($data, "cmp");