如何显示设定日期后2周的日期?

时间:2010-03-05 02:41:02

标签: php date

如果我有10/10/10的日期,如何在2周后显示日期(日期格式)?我认为它与strtotime有关,但我不知道如何编写它。我正在看php.net网站,无法搞清楚。

2 个答案:

答案 0 :(得分:4)

试试这个

date('y/m/d', strtotime('+2 weeks', strtotime('10/10/10')));

答案 1 :(得分:1)

我不是100%你所需要的,但我们会试一试:

$defaultTime = strtotime('+2 week',strtotime('10/10/10'));