php:如何获得2周后的时间戳

时间:2011-08-26 05:07:19

标签: php timestamp

我正在使用strtotime("next week")来获取下周的时间戳。现在我需要获得“下周”的“下周”时间戳,即2周后。

任何人都可以帮助......

-venkat nehatha

2 个答案:

答案 0 :(得分:5)

试试这个:

'Next 2 Week: '.strtotime('+2 week');

答案 1 :(得分:1)

我找到了strtotime("+2 week")