PHP的时间增加10分钟和加一天的时间

加一个时间上增加120分钟

 date_default_timezone_set('PRC');
$start_time="2017-3-22 17:00:00";//开始考试时间
echo $start_time."
"; $mm=60*60;//PHP的时间是按秒算的 echo date("Y-m-d H:i:s",strtotime($start_time)+$mm);


每时每刻都增加120分钟

echo date('Y-m-d H:i:s',strtotime("+120 minute"));


    $starttime=date("Y-m-d", strtotime("-30 days", time()));//-30;从现在时间倒回30  
    $endtime=date("Y-m-d");  

你可能感兴趣的:(php)