获取特定年份的月份列表及其开始日期和上次日期

获取特定年份的月份列表及其开始日期和上次日期

问题描述:

I want to get a list of months from a particular year when the year is submitted from a form. The months must come with the start date and the last date of the month.

$year = $_POST['year'];
$current_year = date('Y');

for ($m=1;$m<=12;$m++)
{$month = date("F", mktime(0,0,0,$m,1,$year));
$nmonth = date("m",strtotime($month));
$days = cal_days_in_month(CAL_GREGORIAN,$nmonth,$year);
$sdate = mktime(0, 0, 0, $nmonth, 1, $year);
$edate = mktime(0, 0, 0, $nmonth, $days, $year);
//$edate = date("Y-m-t", strtotime($sdate));
echo strftime("$month $year").'  -  '.'Start date '.''.strftime(" %Y-%m-%d",     $sdate).'  '.'End date '.''.$edate.'   -   '.strtoupper(substr($month, 0, 3)).date("y",mktime(0,0,0,$nmonth,1,$year)).$days.'<br>';
//echo $month.' '.$days.' '.$sdate.' '.$edate.'<br>';
}

<body>
<form id="period" name="period" method="post" action="create_period.php">

  <input type="text" name="year" id="year" />

  <label>
   <input type="submit" name="button" id="submit" value="Create Period" />
   </label>
   <input type="hidden" name="id" id="id" />
</form>

</body>

You can use DatePeriod like this:

$year = 2015;

$period = new DatePeriod(
     (new DateTime())->setDate($year, 1, 1), //Start at 2015-01-01
     new DateInterval('P1M'), //Step is 1 month
     (new DateTime())->setDate($year+1, 1, 1) //End at 2016-01-01
);

foreach($period as $date){
    $firstDay = $date->modify('first day of this month')->format("Y/m/d") ;
    $lastDay = $date->modify('last day of this month')->format("Y/m/d") ;

    echo "$firstDay - $lastDay <br>";
}

Demo: https://3v4l.org/CidUa