我在变量中有一个strtotime日期。我需要从变量中找出第4天
$strtotime1=strtotime('06/17/2012');
我需要以strtotime格式找出第4天(即06/21/2012)。
我尝试过:
$strtotime2=$strtotime1+4*60 * 60;
但它不起作用。
答案 0 :(得分:2)
您要加4小时而不是4天。
应为$strtotime2=$strtotime1+4*24*60*60;
或
你可以这样做:
$strtotime2 = strtotime('+4 days', $strtotime1);
$date2 = date('m/d/Y', $strtotime2);