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? Quote 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 Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.