dougan1465 2016-07-31 02:02
浏览 96
已采纳

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

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>
  • 写回答

1条回答 默认 最新

  • duan19750503 2016-07-31 02:15
    关注

    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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!