PHPで一カ月後の日付を取得

PHPで一カ月後の日付を取得

今日の日付が 2022年10月12日 の場合

 

一カ月後の日付
$w_date=date(‘Y-m-d’,strtotime(“+1 month”));
echo $w_date;

結果 2022-11-12 が表示される。

 

一週間前の日付
$w_date=date(‘Y-m-d’,strtotime(“-1 week”));
echo $w_date;

結果 2022-10-05 が表示される。