Answers for "php get query order by date"

PHP
2

php array order by date

usort($array, function($a, $b) {
  return new DateTime($a['datetime']) <=> new DateTime($b['datetime']);
});
Posted by: Guest on January-09-2020

Browse Popular Code Answers by Language