PHP计算上一个月最后一天当月最后一天下一个月最后一天
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP计算上一个月最后一天当月最后一天下一个月最后一天相关的知识,希望对你有一定的参考价值。
上个月最后一天:
$last_month_last_day = date(‘Y-m-t‘,strtotime(‘-1 month‘));
当月最后一天:
$first_day=date(‘Y-m-01‘,time()); $this_month_last_day=date("Y-m-d",strtotime("$first_day +1 month -1 day"));
下月最后一天:
$first_day=date(‘Y-m-01‘,time()); $next_month_last_day=date("Y-m-d",strtotime("$first_day +2 month -1 day"));
以上是关于PHP计算上一个月最后一天当月最后一天下一个月最后一天的主要内容,如果未能解决你的问题,请参考以下文章