PHP subtract 1 month from date formatted with date ('m-Y')

后端 未结 10 579
北恋
北恋 2020-12-20 11:11

I\'m trying to subtract 1 month from a date.

$today = date(\'m-Y\');

This gives: 08-2016

How can I subtract a month to get 07

10条回答
  •  隐瞒了意图╮
    2020-12-20 11:48

    Try this,

    $today = date('m-Y');
    $newdate = date('m-Y', strtotime('-1 months', strtotime($today))); 
    echo $newdate;
    

提交回复
热议问题