Alkimuz Posted February 28, 2008 Share Posted February 28, 2008 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 More sharing options...
obsidian Posted February 28, 2008 Share Posted February 28, 2008 Try this: <?php $date = '01-2003'; list($m, $y) = explode('-', $date); echo date('m-Y', mktime(0,0,0,$m - 1,1,$y)); ?> I believe this will work, even when the date is January, but you may need to test to be sure. Link to comment https://forums.phpfreaks.com/topic/93505-subtract-month-from-given-date-mm-yyyy/#findComment-479071 Share on other sites More sharing options...
The Little Guy Posted February 28, 2008 Share Posted February 28, 2008 This may work (untested): <?php $date = strtotime('01-2003'); $lastmonth = strtotime ('-1 month' ,$date); echo $lastmonth; ?> Link to comment https://forums.phpfreaks.com/topic/93505-subtract-month-from-given-date-mm-yyyy/#findComment-479096 Share on other sites More sharing options...
obsidian Posted February 28, 2008 Share Posted February 28, 2008 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 https://forums.phpfreaks.com/topic/93505-subtract-month-from-given-date-mm-yyyy/#findComment-479158 Share on other sites More sharing options...
Alkimuz Posted February 28, 2008 Author Share Posted February 28, 2008 You guys Rock!! first and third solution work indeed exelent! many thanks, i can continue working now Link to comment https://forums.phpfreaks.com/topic/93505-subtract-month-from-given-date-mm-yyyy/#findComment-479508 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.