当前位置: 首页 > 工具软件 > PHP Carbon > 使用案例 >

php使用Carbon获取2个日期之间的日期

宫坚
2023-12-01
<?php
use Carbon\CarbonPeriod;

$period = CarbonPeriod::create('2018-06-14', '2018-06-20');

// Iterate over the period
foreach ($period as $date) {
    echo $date->format('Y-m-d') ."\n";
}

//result
2018-06-14
2018-06-15
2018-06-16
2018-06-17
2018-06-18
2018-06-19
2018-06-20

 类似资料: