I'm using strtotime("next week")
to ge开发者_JAVA百科t the next week's timestamp. now i need to get the timestamp of 'next week' of 'next week', i.e. 2 weeks later.
can anybody plz help...
-venkat nehatha
Try this:
'Next 2 Week: '.strtotime('+2 week');
I found strtotime("+2 week")
精彩评论