获取碳中两个日期之间的所有月份名称

时间:2018-06-01 11:15:13

标签: php php-carbon

我在这里的任何问题和答案中都只发现了这一点,但没有一个与碳有关。

有没有办法在碳中做到这一点:

$start    = (new DateTime('2018-06-01'))->modify('first day of this month');
    $end      = (new DateTime('2019-06-01'))->modify('first day of next month');
    $interval = DateInterval::createFromDateString('1 month');
    $period   = new DatePeriod($start, $interval, $end);

    foreach ($period as $dt) {
        echo $dt->format("Y-m") . "<br>\n";
    }

1 个答案:

答案 0 :(得分:6)

使用CarbonPeriod class todo same

    use Carbon\CarbonPeriod;
    $period = CarbonPeriod::create('2018-06-01', '1 month', '2019-06-01');

    foreach ($period as $dt) {
            echo $dt->format("Y-m") . "<br>\n";
    }