Jump to content

subtract month from given date (mm-yyyy)


Alkimuz

Recommended Posts

probably a noob-question, but i have to ask after 2 hours trying to find out for myself..

 

i know how to subtract a month from the date of today and present it like mm-yyyy:

 

date ("m-Y", mktime (0, 0, 0, date("m") - 1, date("d"), date("Y")))

 

but how to subtract a month from an other date that today??

 

so for example, my input is:

 

$date = 01-2003

 

and i want an output like:

 

$lastmonth = 12-2002

 

how to get there?

 

thanks so mutch for any help!

Link to comment
https://forums.phpfreaks.com/topic/93505-subtract-month-from-given-date-mm-yyyy/
Share on other sites

This may work (untested):

 

<?php
$date = strtotime('01-2003');
$lastmonth = strtotime  ('-1 month' ,$date);
echo $lastmonth;
?>

 

Good thought, but as MM-YYYY is not a valid readable date format, that won't work as is; however, a slight modification will:

<?php
list($m, $y) = explode('-', '02-2003');
echo date('m-Y', strtotime("{$y}-{$m}-01 -1 month"));
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.