php:如何获取两周后一天的时间戳
我正在使用 strtotime("next week")
来获取下周的时间戳。现在我需要获取“下周”的“下周”的时间戳,即两周后。
有人可以帮忙吗...-
venkat nehatha
I'm using strtotime("next week")
to get 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
'接下来 2 周:'.strtotime('+2 week');
Try this:
'Next 2 Week: '.strtotime('+2 week');
我发现
strtotime("+2 week")
I found
strtotime("+2 week")