根据第三级值对第二级三维数组进行排序


Sorting 3 dimensional array at 2nd level based on 3rd level values

我正在使用Google日历API从多个日历中提取数据。 我正在创建一个数组,以便我可以格式化数据的显示。 我在对数据进行排序时遇到问题,因此事件将以正确的顺序显示。

我的主要排序是在 ASC datetime。 如果两个日期时间相等,我想按alldayflag DESC 排序。 我只希望它在每个日期内排序。

以下是我的数据示例:

Array 
( 
[2016-01-29] => Array 
    ( 
        [0] => Array 
            ( 
                [date] => January 29 
                [time] => 8:30 am 
                [datetime] => 2016-01-29T08:30:00-06:00 
                [alldayflag] => 0 
            ) 
        [1] => Array 
            ( 
                [date] => January 29 
                [time] => 12:00 am 
                [datetime] => 2016-01-29T00:00:00-06:00 
                [alldayflag] => 1 
            ) 
        [2] => Array 
            ( 
                [date] => January 29 
                [time] => 2:00 pm 
                [datetime] => 2016-01-29T14:00:00-06:00 
                [alldayflag] => 0 
            ) 
        [3] => Array 
            ( 
                [date] => January 29 
                [time] => 10:00 am 
                [datetime] => 2016-01-29T10:00:00-06:00 
                [alldayflag] => 0 
            ) 
        [4] => Array 
            ( 
                [date] => January 29 
                [time] => 12:00 pm 
                [datetime] => 2016-01-29T12:00:00-06:00 
                [alldayflag] => 0 
            ) 
    ) 
[2016-01-30] => Array 
    ( 
        [0] => Array 
            ( 
                [date] => January 30 
                [time] => 4:00 pm 
                [datetime] => 2016-01-30T16:00:00-06:00 
                [alldayflag] => 0 
            ) 
        [1] => Array 
            ( 
                [date] => January 30 
                [time] => 5:00 pm 
                [datetime] => 2016-01-30T17:00:00-06:00 
                [alldayflag] => 0 
            ) 
        [2] => Array 
            ( 
                [date] => January 30 
                [time] => 11:00 am 
                [datetime] => 2016-01-30T11:00:00-06:00 
                [alldayflag] => 0 
            ) 
    ) 
)

我试过使用array_multisort(). 我得到了正确的排序结果,但是我也收到错误消息:

警告:array_multisort():排序数组中的数组大小不一致.php在 XXX 行

$getBeginDate = '2016-01-29';
$getEndDate = '2016-01-31';
$getCurrentDate = $getBeginDate;
while(strtotime($getCurrentDate) < strtotime($getEndDate)) {
    foreach ($list[$getCurrentDate] as $key => $row){
         $datetime[$key] = $row['datetime'];
         $alldayflag[$key] = $row['alldayflag'];
    }
    array_multisort($datetime, SORT_ASC, $alldayflag, SORT_DESC, $list[$getCurrentDate]);
    $getCurrentDate = date('Y-m-d', strtotime($getCurrentDate . " +1 day"));
}

我也试过uasort(). 它根本无法正确排序。

uasort($list, 'sortCriteria');
function sortCriteria($array, $key) {
    if(strtotime($a['datetime']) == strtotime($b['datetime'])) {
        if($a['allday'] < $b['allday']) {
            return -1;
        } else {
            return 0;
        }
    }
    return (strtotime($a['datetime']) < strtotime($b['datetime'])) ? -1 : 1;
}

任何帮助将不胜感激。

array_multisort绝对是你想走的路。我有一个未经测试的答案给你,所以如果这是一个不正确的猜测,我可能会被社区的愤怒所打击,但看起来你遇到了关闭问题,或者更确切地说是缺乏关闭问题。这应该可以解决您的问题:

...
while(strtotime($getCurrentDate) < strtotime($getEndDate)) {
$datetime = [];
$alldayflag = [];
foreach ($list[$getCurrentDate] as $key => $row){
...

我从您提到的错误中猜测,如果您在多排序之前转储$datetime,那么第一次里面会有 5 个项目,第二次会有 5 个项目。

first_dump => '29th', '29th', '29th', '29th', '29th'
second_dump => '30th', '30th', '30th', '29th', '29th'

或类似的东西。正在发生的事情是$datetime坚持通过第一轮while循环进入第二次。这是第二次轰炸您的多排序,因为只有 3 个项目而不是 5 个。

我希望这是有道理的。

一个可能的解决方案可能是使用 usort。然后,您可以使用日期时间来比较"日期时间"。然后,如果两个日期时间相等,则可以比较"全天标志"。

例如:

function sortCriteria($a, $b)
{
    $aDateTime = new DateTime($a['datetime']);
    $bDateTime = new DateTime($b['datetime']);
    if ($aDateTime == $bDateTime) {
        return ($a['alldayflag'] > $b['alldayflag']) ? -1 : 1;
    }
    return ($aDateTime < $bDateTime) ? -1 : 1;
}
$getBeginDate = '2016-01-29';
$getEndDate = '2016-01-31';
$getCurrentDate = $getBeginDate;
while(strtotime($getCurrentDate) < strtotime($getEndDate)) {
    usort($list[$getCurrentDate], 'sortCriteria');
    $getCurrentDate = date('Y-m-d', strtotime($getCurrentDate . " +1 day"));
}

演示