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

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

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