月の最終日を取得する 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('先月',$time ));
//指定された日付の翌月の末日を取得します
$curtime="2010-04-11";
$time=strtotime ($curtime);
date('Y-m-t',strtotime('来月',$time));