我想输出当年特定月份的最后和第一个日期。我正在使用此代码但不起作用
$month='02';
$first_day_this_month = date('Y-'.$month.'-01'); // hard-coded '01' for first day
$last_day_this_month = date('Y-'.$month.'-t');
echo $first_day_this_month;print'<->';echo $last_day_this_month;
我的输出显示
2015-02-01<->2015-02-31
但它将是2015-02-01<->2015-02-28
答案 0 :(得分:14)
之前我遇到过PHP的问题,请尝试以下方法:
$dateToTest = "2015-02-01";
$lastday = date('t',strtotime($dateToTest));
答案 1 :(得分:4)
有很多方法可以做到这一点,我给你两个答案\想法:
1-尝试使用strtotime
PHP函数(http://php.net/manual/es/function.strtotime.php)
像date("Y-m-d", strtotime("last day of this month"));
或第一天......或任何月份。
2-其他方式你可以使用它:
第一天:
date("Y-m-d", mktime(0, 0, 0, *YOUR MONTH PARAM*,1 ,date("Y")));
最后一天:
date("Y-m-d", mktime(0, 0, 0, *YOUR MONTH PARAM*+1,0,date("Y")));
在此处阅读 mktime 功能:
祝你好运!答案 2 :(得分:1)
您可以使用DateTime类。
$month='02';
$first_day_this_month = date('Y-'.$month.'-01');
$firstDayThisMonth = new \DateTime($first_day_this_month);
$lastDayThisMonth = new \DateTime($firstDayThisMonth->format('Y-m-t'));
$lastDayThisMonth->setTime(23, 59, 59);
echo $firstDayThisMonth->format("Y-m-d");
echo "<->";
echo $lastDayThisMonth->format("Y-m-d");
答案 3 :(得分:0)
您可以使用DateTime方法:
$month = '02';
$date = new DateTime(date('Y').'-'.$month.'-01');
$date->modify('first day of this month');
$first_day_this_month = $date->format('Y-m-d');
$date->modify('last day of this month');
$last_day_this_month = $date->format('Y-m-d');