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

问题描述:

我希望从表格中提交年份的某个特定年份获取月份列表。月份必须与月份的开始日期和最后日期一起提供。获取特定年份的月份列表及其开始日期和结束日期

$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> 

您可以使用DatePeriod这样的:

$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>"; 
} 

演示:https://3v4l.org/CidUa

+0

感谢名单@伊斯梅尔 - rbouh。你是一位天才 – user3315848

+0

我感谢你的帮助。我在[link]有另一个问题(http://*.com/questions/38684317/values-fail-to-insert-when-into-table-fields-when-posted) – user3315848