0

我正在准备一个节日网站。我有一张带有节日日期日期时间字段的表格。音乐节将在“2013 年 3 月 6 日”和“2013 年 4 月 7 日”之间举行。所以我在这些答案中创建了循环:

Schema::create('dates',function($table)
        {
            $table->increments('id');
            $table->date('date');
            $table->timestamps();
        });
        $starting_date = new DateTime('2013-03-06');
        $ending_date = new DateTime('2013-04-06');

        $interval = DateInterval::createFromDateString('1 day');
        $period = new  DatePeriod($starting_date , $interval, $ending_date);

        foreach($period as $dt)
        {

        DB::table('dates')->insert(array(
        'date' => $dt
        ));

        }

数据库填满到 4 月 4 日,循环不超过 30 天。你能帮我找到丢失日子的解决办法吗?

ps:我使用了替代的while循环,结果相同:

    $starting_date = new DateTime('2013-03-06');        
            $ending_date = new DateTime('2013-04-07');

            while($starting_date <= $ending_date){
                DB::table('dates')->insert(array(
                    'date' => $starting_date
                ));

            }
    $starting_date->add(new DateInterval('P1D'));
}
4

2 回答 2

2

我想出的一个非常快速而肮脏的解决方案是:

$starting_date = strtotime('2013-03-06');
$ending_date = strtotime('2013-04-06');

while($starting_date <= $ending_date)
{
    echo date('d/m/y', $starting_date) . '<br />';
    $starting_date = strtotime('1 day', $starting_date);
}

哪个输出:

06/03/13
07/03/13
08/03/13
09/03/13
10/03/13
11/03/13
12/03/13
13/03/13
14/03/13
15/03/13
16/03/13
17/03/13
18/03/13
19/03/13
20/03/13
21/03/13
22/03/13
23/03/13
24/03/13
25/03/13
26/03/13
27/03/13
28/03/13
29/03/13
30/03/13
31/03/13
01/04/13
02/04/13
03/04/13
04/04/13
05/04/13
06/04/13

您可以简单地用您的查询替换回声。

于 2013-01-09T11:26:15.370 回答
1
just add 23:59:59 to the end of the $ending_date
$starting_date = new DateTime('2013-03-06 00:00');
$ending_date = new DateTime('2013-04-06 23:59:59');


$interval = new DateInterval('P1D');
$period = new  DatePeriod($starting_date , $interval, $ending_date);
foreach ($period as $date) {
    echo $date->format('Y-m-d')."<br/>";
}
print_r($period);exit;

哪个输出

2013-03-06
2013-03-07
2013-03-08
2013-03-09
2013-03-10
2013-03-11
2013-03-12
2013-03-13
2013-03-14
2013-03-15
2013-03-16
2013-03-17
2013-03-18
2013-03-19
2013-03-20
2013-03-21
2013-03-22
2013-03-23
2013-03-24
2013-03-25
2013-03-26
2013-03-27
2013-03-28
2013-03-29
2013-03-30
2013-03-31
2013-04-01
2013-04-02
2013-04-03
2013-04-04
2013-04-05
2013-04-06

于 2013-01-09T12:12:19.830 回答