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

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

    Try this,

    $effectiveDate = date('2018-01'); 
    echo 'Date'.$effectiveDate;
    $effectiveDate = date('m-y', strtotime($effectiveDate.'+-1 months'));
    echo 'Date'.$effectiveDate;

提交回复
热议问题