从PHP的正常日期开始,查看第四天

时间:2012-06-07 09:17:31

标签: php

我在变量中有一个strtotime日期。我需要从变量中找出第4天

$strtotime1=strtotime('06/17/2012');

我需要以strtotime格式找出第4天(即06/21/2012)。

我尝试过:

$strtotime2=$strtotime1+4*60 * 60;

但它不起作用。

1 个答案:

答案 0 :(得分:2)

您要加4小时而不是4天。

应为$strtotime2=$strtotime1+4*24*60*60;

你可以这样做:

$strtotime2 = strtotime('+4 days', $strtotime1);
$date2 = date('m/d/Y', $strtotime2);