Help for this page

Select Code to Download


  1. or download this
    while ($date <= $endDate) {
            say $date;
    ...
                     $date->year + ($date->mon == 12), $date->mon % 12 + 1
    +, 1),
                '%Y %m %d');
    }
    
  2. or download this
    while ($date <= $endDate) {
            say $date;
            $date += Time::Seconds::ONE_DAY * $date->month_last_day;
    }