PHPでの取得時間の来週来月の方法

849 ワード

 
  
// , ,

// , DATETIME

date('Y-m-d H:i:s',strtotime('+1 month'))

// ,

strtotime(date('Y-m-d H:i:s',strtotime('+1 month')))

// , , , , ,

date("Y-m-d H:i:s", strtotime(" +2 year"));
date("Y-m-d H:i:s", strtotime(" +2 month"));
date("Y-m-d H:i:s", strtotime(" +2 week"));
date("Y-m-d H:i:s", strtotime(" +2 day"));
date("Y-m-d H:i:s", strtotime(" +2 hour"));
date("Y-m-d H:i:s", strtotime(" +2 minute"));
date("Y-m-d H:i:s", strtotime(" +2 second"));