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

后端 未结 10 650
北恋
北恋 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:34

    if(date("d") > 28){
        $date = date("Y-m", strtotime("-".$loop." months -2 Day"));
    } else {
        $date = date("Y-m", strtotime("-".$loop." months"));
    }
    

提交回复
热议问题