在PHP数组中有一个月的DateInterval

时间:2015-08-07 08:54:40

标签: php arrays dateinterval

如何使用DateInterval在php中获取月间隔。

如果我选择 2015年8月5日作为开始日期而 2015年10月17日作为结束日期,那么我的数组输出应分为3个数组:

  • 2015年8月5日 - 2015年8月31日
  • 的第一个阵列
  • 2015年9月1日至2015年9月30日第二阵列
  • 2015年10月1日至2015年10月17日的第3阵列

我们可以通过php DateInterval函数来实现这个功能吗?

2 个答案:

答案 0 :(得分:1)

如果您熟悉PHP的一些有用的内置日期/时间类,这非常简单。

您可以使用DateTimeDateIntervalDatePeriod来获得结果。例如:

<?php

// create start/end dates and interval
$start    = new DateTime('05 Aug 2015');
$end      = new DateTime('17 Oct 2015');
$interval = new DateInterval('P1D');

// DatePeriod excludes the last day
// so bump the end date by one
$end->modify('+1 day');

// create a DatePeriod for each day in range
$period = new DatePeriod($start, $interval, $end);

$months = [];

foreach ($period as $date) {
    $months[$date->format('F')][] = $date->format('m/d/Y');
}

print_r($months);

收率:

Array
(
    [August] => Array
        (
            [0] => 08/05/2015
            [1] => 08/06/2015
            [2] => 08/07/2015
            [3] => 08/08/2015
            [4] => 08/09/2015
            [5] => 08/10/2015
            [6] => 08/11/2015
            [7] => 08/12/2015
            [8] => 08/13/2015
            [9] => 08/14/2015
            [10] => 08/15/2015
            [11] => 08/16/2015
            [12] => 08/17/2015
            [13] => 08/18/2015
            [14] => 08/19/2015
            [15] => 08/20/2015
            [16] => 08/21/2015
            [17] => 08/22/2015
            [18] => 08/23/2015
            [19] => 08/24/2015
            [20] => 08/25/2015
            [21] => 08/26/2015
            [22] => 08/27/2015
            [23] => 08/28/2015
            [24] => 08/29/2015
            [25] => 08/30/2015
            [26] => 08/31/2015
        )

    [September] => Array
        (
            [0] => 09/01/2015
            [1] => 09/02/2015
            [2] => 09/03/2015
            [3] => 09/04/2015
            [4] => 09/05/2015
            [5] => 09/06/2015
            [6] => 09/07/2015
            [7] => 09/08/2015
            [8] => 09/09/2015
            [9] => 09/10/2015
            [10] => 09/11/2015
            [11] => 09/12/2015
            [12] => 09/13/2015
            [13] => 09/14/2015
            [14] => 09/15/2015
            [15] => 09/16/2015
            [16] => 09/17/2015
            [17] => 09/18/2015
            [18] => 09/19/2015
            [19] => 09/20/2015
            [20] => 09/21/2015
            [21] => 09/22/2015
            [22] => 09/23/2015
            [23] => 09/24/2015
            [24] => 09/25/2015
            [25] => 09/26/2015
            [26] => 09/27/2015
            [27] => 09/28/2015
            [28] => 09/29/2015
            [29] => 09/30/2015
        )

    [October] => Array
        (
            [0] => 10/01/2015
            [1] => 10/02/2015
            [2] => 10/03/2015
            [3] => 10/04/2015
            [4] => 10/05/2015
            [5] => 10/06/2015
            [6] => 10/07/2015
            [7] => 10/08/2015
            [8] => 10/09/2015
            [9] => 10/10/2015
            [10] => 10/11/2015
            [11] => 10/12/2015
            [12] => 10/13/2015
            [13] => 10/14/2015
            [14] => 10/15/2015
            [15] => 10/16/2015
            [16] => 10/17/2015
        )

)

请注意:您指定要将结果分成三个单独的数组。我假设结果将是动态的 - 其中月数可能会有所不同 - 所以我认为你最好生成一个多维数组的结果。

在上面的示例中,我使用月份名称作为键。 $date->format('F')会返回full textual representation of a month, such as January or March

如果您想获得$months数组中包含的月份列表,您可以这样做:

print_r(array_keys($months));

返回密钥,并且应该为您提供足够的信息来访问满足您需求的数据:

Array
(
    [0] => August
    [1] => September
    [2] => October
)

希望这会有所帮助:)

答案 1 :(得分:1)

您可以尝试以下代码。我不确定,但你可能会得到你想要的东西

call/N