我在变量中有一个 strtotime 日期。我需要从该变量中找出第 4 天
$strtotime1=strtotime('06/17/2012');
我需要以 strtotime 格式找出第 4 天(即 2012 年 6 月 21 日)。
我尝试过:
$strtotime2=$strtotime1+4*60 * 60;
但它不起作用。
我在变量中有一个 strtotime 日期。我需要从该变量中找出第 4 天
$strtotime1=strtotime('06/17/2012');
我需要以 strtotime 格式找出第 4 天(即 2012 年 6 月 21 日)。
我尝试过:
$strtotime2=$strtotime1+4*60 * 60;
但它不起作用。