PHP按包含日期的元素对多维数组进行排序

时间:2010-05-26 06:39:40

标签: php datetime arrays sorting

我有一个数组如:

Array
(
[0] => Array
    (
        [id] => 2
        [type] => comment
        [text] => hey
        [datetime] => 2010-05-15 11:29:45
    )

[1] => Array
    (
        [id] => 3
        [type] => status
        [text] => oi
        [datetime] => 2010-05-26 15:59:53
    )

[2] => Array
    (
        [id] => 4
        [type] => status
        [text] => yeww
        [datetime] => 2010-05-26 16:04:24
    )

)

有人能建议一种基于日期时间元素对此进行排序/排序的方法吗?

11 个答案:

答案 0 :(得分:180)

使用usort()和自定义比较功能:

function date_compare($a, $b)
{
    $t1 = strtotime($a['datetime']);
    $t2 = strtotime($b['datetime']);
    return $t1 - $t2;
}    
usort($array, 'date_compare');

编辑:您的数据以数组数组排列。为了更好地区分它们,让我们调用内部数组(数据)记录,这样你的数据就是一个记录数组。

usort会将其中两条记录一次传递给给定的比较函数date_compare()date_compare然后将每个记录的"datetime"字段提取为UNIX时间戳(整数),并返回差值,如果两个日期相等,则结果为0,为正如果第一个($a)较大,则为number;如果第二个参数($b)较大,则为负值。 usort()使用此信息对数组进行排序。

答案 1 :(得分:28)

从php7开始,您可以使用Spaceship operator

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

答案 2 :(得分:27)

这应该有效。我通过strtotime将日期转换为unix时间。

  foreach ($originalArray as $key => $part) {
       $sort[$key] = strtotime($part['datetime']);
  }
  array_multisort($sort, SORT_DESC, $originalArray);

答案 3 :(得分:5)

http://us2.php.net/manual/en/function.array-multisort.php 见第三个例子:

<?php

$data[] = array('volume' => 67, 'edition' => 2);
$data[] = array('volume' => 86, 'edition' => 1);
$data[] = array('volume' => 85, 'edition' => 6);
$data[] = array('volume' => 98, 'edition' => 2);
$data[] = array('volume' => 86, 'edition' => 6);
$data[] = array('volume' => 67, 'edition' => 7);

foreach ($data as $key => $row) {
    $volume[$key]  = $row['volume'];
    $edition[$key] = $row['edition'];
}

array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data);

?>
使用unix(1970年的秒数)或mysql时间戳(YmdHis - 20100526014500)对解析器来说会更容易,但我认为在你的情况下没有区别。

答案 4 :(得分:4)

按指定的mysql datetime字段和顺序对记录数组/ assoc_arrays进行排序:

function build_sorter($key, $dir='ASC') {
    return function ($a, $b) use ($key, $dir) {
        $t1 = strtotime(is_array($a) ? $a[$key] : $a->$key);
        $t2 = strtotime(is_array($b) ? $b[$key] : $b->$key);
        if ($t1 == $t2) return 0;
        return (strtoupper($dir) == 'ASC' ? ($t1 < $t2) : ($t1 > $t2)) ? -1 : 1;
    };
}


// $sort - key or property name 
// $dir - ASC/DESC sort order or empty
usort($arr, build_sorter($sort, $dir));

答案 5 :(得分:4)

$array = Array
(
  [0] => Array
   (
    [id] => 2
    [type] => comment
    [text] => hey
    [datetime] => 2010-05-15 11:29:45
   )

 [1] => Array
  (
    [id] => 3
    [type] => status
    [text] => oi
    [datetime] => 2010-05-26 15:59:53
  )

  [2] => Array
   (
    [id] => 4
    [type] => status
    [text] => yeww
    [datetime] => 2010-05-26 16:04:24
   )

   );
   print_r($array);   
   $name = 'datetime';
   usort($array, function ($a, $b) use(&$name){
      return $a[$name] - $b[$name];});

   print_r($array);

答案 6 :(得分:1)

我遇到过这篇文章,但我想按时间排序,在课堂上退回项目时出错了。

所以我研究了php.net网站并最终做到了这一点:

class MyClass {
   public function getItems(){
      usort( $this->items, array("MyClass", "sortByTime") );
      return $this->items;
   }
   public function sortByTime($a, $b){
      return $b["time"] - $a["time"];
   }
}

您可以在PHP.net website

中找到非常有用的示例

我的阵列看起来像这样:

  'recent' => 
    array
      92 => 
        array
          'id' => string '92' (length=2)
          'quantity' => string '1' (length=1)
          'time' => string '1396514041' (length=10)
      52 => 
        array
          'id' => string '52' (length=2)
          'quantity' => string '8' (length=1)
          'time' => string '1396514838' (length=10)
      22 => 
        array
          'id' => string '22' (length=2)
          'quantity' => string '1' (length=1)
          'time' => string '1396514871' (length=10)
      81 => 
        array
          'id' => string '81' (length=2)
          'quantity' => string '2' (length=1)
          'time' => string '1396514988' (length=10)

答案 7 :(得分:1)

您可以使用带有回调函数的usort()来解决此问题。无需编写任何自定义函数。

$your_date_field_name = 'datetime';
usort($your_given_array_name, function ($a, $b) use (&$name) {
    return strtotime($a[$name]) - strtotime($b[$name]);
});

答案 8 :(得分:1)

对于那些仍在使用sortByDate函数的类中仍以这种方式解决问题的人,请参见下面的代码

<?php

class ContactsController 
{
    public function __construct()
    {
    //
    }


    function sortByDate($key)
    {
        return function ($a, $b) use ($key) {
            $t1 = strtotime($a[$key]);
            $t2 = strtotime($b[$key]);
            return $t2-$t1;
        };

    }

    public function index()
    {

        $data[] = array('contact' => '434343434', 'name' => 'dickson','updated_at' =>'2020-06-11 12:38:23','created_at' =>'2020-06-11 12:38:23');
        $data[] = array('contact' => '434343434', 'name' => 'dickson','updated_at' =>'2020-06-16 12:38:23','created_at' =>'2020-06-10 12:38:23');
        $data[] = array('contact' => '434343434', 'name' => 'dickson','updated_at' =>'2020-06-7 12:38:23','created_at' =>'2020-06-9 12:38:23');


        usort($data, $this->sortByDate('updated_at'));

        //usort($data, $this->sortByDate('created_at'));
        echo $data;

    }
}

答案 9 :(得分:0)

对于'd/m/Y'个日期:

usort($array, function ($a, $b, $i = 'datetime') { 
    $t1 = strtotime(str_replace('/', '-', $a[$i]));
    $t2 = strtotime(str_replace('/', '-', $b[$i]));

    return $t1 > $t2;
});

其中$i是数组索引

答案 10 :(得分:0)

早期的大多数答案都没有承认将日期时间值作为简单字符串进行比较的可用快捷方式。其他意识到 strtotime() 没有必要的答案并没有说明为什么要这样做......所以我会的。

因为您的 datetime 值的格式单位是降序大小 (Y, m, d, H, i, { {1}}) AND 因为每个单元始终用相同数量的字符表示 (4, 2, 2, 2, 2, 2) AND 因为分隔符从字符串到字符串都是相同的,您可以简单地比较它们的字符从左到右逐个字符(自然)。对于格式化为 s 等格式的日期字符串,情况并非如此。

有两个函数非常适合此任务,我将演示两者的 ASC 和 DESC 版本。

Demo Link

  • usor() 按日期列 DESC:

    d/m/Y
  • usort() 按日期列 ASC:

    usort($array, function($a, $b) { return $b['datetime'] <=> $a['datetime']; });
    
  • usort() by date column ASC in >= PHP7.4:

    usort($array, function($a, $b) { return $a['datetime'] <=> $b['datetime']; });
    
  • array_multisort() 按日期列 DESC:

    usort($array, fn($a, $b) => $a['datetime'] <=> $b['datetime']);
    
  • array_multisort() 按日期列 ASC:

     array_multisort(array_column($array, 'datetime'), SORT_DESC, $array);
    

所有这些技术都是通过引用修改的,所以函数没有提供真正有价值的返回值。

array_multisort(array_column($array, 'datetime'), $array);

  • 不需要自定义函数
  • 确实需要通过某种循环机制隔离日期时间列
  • 它会丢失数字键,但幸运的是它们对这个问题没有价值

array_multisort()

  • 不使用排序方向常量,因此开发者必须明白usort()之前的$a(在飞船运营商的任一侧)表示ASC和$b之前的$b表示 DESC
  • 需要自定义函数
  • 可以通过调用 $a 来调整以保留一级密钥

对于真正需要解析日期或日期时间字符串的任何人,因为其格式不允许即时字符串比较,这里是 an answer devoted to explaining the caveats of that task