我以日期2010-05-01开始,以2010-05-10结束。如何在PHP中遍历所有这些日期?


当前回答

针对碳使用者

use Carbon\Carbon;

$startDay = Carbon::parse("2021-08-01");
$endDay= Carbon::parse("2021-08-05");
$period = $startDay->range($endDay, 1, 'day');

当我打印数据时

[
     Carbon\Carbon @1627790400 {#4970
       date: 2021-08-01 00:00:00.0 America/Toronto (-04:00),
     },
     Carbon\Carbon @1627876800 {#4974
       date: 2021-08-02 00:00:00.0 America/Toronto (-04:00),
     },
     Carbon\Carbon @1627963200 {#4978
       date: 2021-08-03 00:00:00.0 America/Toronto (-04:00),
     },
     Carbon\Carbon @1628049600 {#5007
       date: 2021-08-04 00:00:00.0 America/Toronto (-04:00),
     },
     Carbon\Carbon @1628136000 {#5009
       date: 2021-08-05 00:00:00.0 America/Toronto (-04:00),
     },
]

这是Laravel数据转储使用dd($period->toArray());如果您愿意,现在可以使用foreach语句遍历$period。

一个重要的注意事项-它包括提供给方法的边缘日期。

想要了解更多与约会相关的东西,请查看Carbon文档。

其他回答

这里有一个方法:

 $date = new Carbon();
 $dtStart = $date->startOfMonth();
 $dtEnd = $dtStart->copy()->endOfMonth();

 $weekendsInMoth = [];
 while ($dtStart->diffInDays($dtEnd)) {

     if($dtStart->isWeekend()) {
            $weekendsInMoth[] = $dtStart->copy();
     }

     $dtStart->addDay();
 }

$weekendsInMoth的结果是周末天数的数组!

用户本功能:-

function dateRange($first, $last, $step = '+1 day', $format = 'Y-m-d' ) {
                $dates = array();
                $current = strtotime($first);
                $last = strtotime($last);

                while( $current <= $last ) {    
                    $dates[] = date($format, $current);
                    $current = strtotime($step, $current);
                }
                return $dates;
        }

使用/函数调用:-

增加一天:-

dateRange($start, $end); //increment is set to 1 day.

按月递增:-

dateRange($start, $end, "+1 month");//increase by one month

如果你想设置日期格式,可以使用第三个参数:-

   dateRange($start, $end, "+1 month", "Y-m-d H:i:s");//increase by one month and format is mysql datetime

这也包括最后的日期

$begin = new DateTime( "2015-07-03" );
$end   = new DateTime( "2015-07-09" );

for($i = $begin; $i <= $end; $i->modify('+1 day')){
    echo $i->format("Y-m-d");
}

如果你不需要最后的日期,只需从条件中删除=。

$date = new DateTime($_POST['date']);
$endDate = date_add(new DateTime($_POST['date']),date_interval_create_from_date_string("7 days"));

while ($date <= $endDate) {
    print date_format($date,'d-m-Y')." AND END DATE IS : ".date_format($endDate,'d-m-Y')."\n";
    date_add($date,date_interval_create_from_date_string("1 days"));
}

你也可以这样迭代,$_POST['date']可以从你的应用程序或网站凹痕 而不是$_POST['date']你也可以把你的字符串放在这里"21-12-2019"。两者都可以。

$begin = new DateTime('2010-05-01');
$end = new DateTime('2010-05-10');

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

foreach ($period as $dt) {
    echo $dt->format("l Y-m-d H:i:s\n");
}

这将输出在$start和$end之间定义的时间段内的所有天数。如果你想包括10号,将$end设置为11号。你可以根据自己的喜好调整格式。请参阅DatePeriod的PHP手册。它需要PHP 5.3。