当前位置:Gxlcms > PHP教程 > php获取任意月的最后一天

php获取任意月的最后一天

时间:2021-07-01 10:21:17 帮助过:35人阅读

php获取任意月份的最后一天,具体例子如下:

echo date('Y-m-t'); //获取当前月的最后一天

echo date('Y-m-t',strtotime("09.13.1987")); //获取指定月份的最后一天

//获取指定日期的上个月的最后一天
$curtime="1987-09-13";
$time=strtotime($curtime );
date('Y-m-t',strtotime('last month',$time));

//获取指定日期的下个月的最后一天
$curtime="2010-04-11";
$time=strtotime($curtime );
date('Y-m-t',strtotime('next month',$time));

人气教程排行