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
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"));
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.