Jump to content

Future Dates


herghost

Recommended Posts

Evening All,

 

How would I go about selecting a future date based on a date?

 

What I want to achieve is to take todays date, add ten days to it and then store it as the month end following that date.

 

For example 19th Nov + 10days = 29th November = 31st Dec

 

 

Many thanks for any pointers!

Link to comment
https://forums.phpfreaks.com/topic/219243-future-dates/
Share on other sites

Nevermind 'now' does the job just fine!

strtotime() defaults to now or current time if you don't give it a timestamp to work from.  So this will do it:

 

$date = strtotime('+10 days');
$date = strtotime('last day next month', $date);
echo date('jS F', $date);

 

But if you have other dates that aren't today then you would just strtotime() them first:

 

$date = strtotime('2011-01-01');

Link to comment
https://forums.phpfreaks.com/topic/219243-future-dates/#findComment-1136934
Share on other sites

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.