CaseyC1 Posted December 23, 2007 Share Posted December 23, 2007 Due to new requirements from Google, I have to add a few new parameters to a delimited text file that I upload to Google to list the products that I sell in my online store. One of the new params is an "expiration date" of the item. This date can only be a maximum of 31 days from the date of the upload. Using the "date" and "mktime" functions I have constructed the following: $nextmonth = mktime(0,0,0, date("m")+1, date("d"), date("Y")); $exp_date = date("Y-m-d", $nextmonth); Is the "mktime" function smart enough to increment the "Y" on rollover or do I have to take care of that? Link to comment https://forums.phpfreaks.com/topic/82931-solved-question-on-proper-usage-of-date-and-mktime-functions/ Share on other sites More sharing options...
PHP_PhREEEk Posted December 23, 2007 Share Posted December 23, 2007 It's smart enough = ^) PhREEEk Link to comment https://forums.phpfreaks.com/topic/82931-solved-question-on-proper-usage-of-date-and-mktime-functions/#findComment-421787 Share on other sites More sharing options...
CaseyC1 Posted December 23, 2007 Author Share Posted December 23, 2007 Thank You, Sir........your expertise is greatly appreciated. Link to comment https://forums.phpfreaks.com/topic/82931-solved-question-on-proper-usage-of-date-and-mktime-functions/#findComment-421792 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.