php 時間を取得します
echo 'Today:'.date('Y-m-d').'
';
echo 'Yesterday:'.date('Y-m-d',strtotime('-1 day') )).'
';
echo '明日:'.date('Y-m-d',strtotime('+1 day')).'
';
echo '1週間後: '.date('Y-m-d',strtotime('+1週間')).'
';
echo '1週間、2日、4時間2秒後:'.date(' Y-m-d G:H :s',strtotime('+1 週間 2 日 4 時間 2 秒')) '
';
echo '次の木曜日:'.date('Y-m-d',strtotime( '来週の木曜日 ')). '
';
echo '最後の月曜日:'.date('Y-m-d',strtotime('最後の月曜日')).'
';
echo '1 か月前:'.date('Y-m-d',strtotime('先月')).'
';
echo '1 か月後:'.date('Y-m-d',strtotime (' +1 か月')).'
';
echo '10 年後:'.date('Y-m-d',strtotime('+10 year')).'
' ;