با استفاه از composer پکیج را نصب کنید:
composer require league/period
به مثال زیر توجه کنید:
$startDate = '2009-06-17';
$endDate = '2009-06-25';
$period = new Period($startDate, $endDate);
foreach ($period->getDatePeriod('1 DAY') as $day) {
var_dump($day->format('Y-m-d'));
}
// Output
//string(10) "2009-06-17"
//string(10) "2009-06-18"
//string(10) "2009-06-19"
//string(10) "2009-06-20"
//string(10) "2009-06-21"
//string(10) "2009-06-22"
//string(10) "2009-06-23"
//string(10) "2009-06-24"