“Sortuj tablicę według daty php” Kod odpowiedzi

Zamów według daty WP PHP

$query = new WP_Query(array(
    'post_status' => 'publish',
    'orderby' => 'publish_date',
    'order' => 'DESC'
  ));
//DESC sorts by newest, ASC by oldest. GL fellow grepper user
Andrew Lautenbach

Zamówienie tablicy PHP według daty

usort($array, function($a, $b) {
  return new DateTime($a['datetime']) <=> new DateTime($b['datetime']);
});
Wandering Wolverine

Sortuj tablicę według daty php

<?php
    function compareDate($date1, $date2){
        return strtotime($date1) - strtotime($date2);
    }
    
    $dateArray = array("2021-11-11", "2021-10-10","2021-08-10", "2021-09-08");
    usort($dateArray, "compareDate");
    
    print_r($dateArray);
?>

//Output

Array
(
   [0] => 2021-08-10
   [1] => 2021-09-08
   [2] => 2021-10-10
   [3] => 2021-11-11
)
Piyush Kamani

Odpowiedzi podobne do “Sortuj tablicę według daty php”

Pytania podobne do “Sortuj tablicę według daty php”

Więcej pokrewnych odpowiedzi na “Sortuj tablicę według daty php” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu