Home > Article > Backend Development > strtotime use
获取当前时间或者任一时间加上任一天数 并转换成日期格式 1、 $date = date('Y-m-d H:i:s',strtotime('+4 days)); //说明:strtotime 的第二个参数为空,默认取值 time(); 2、 $time = strtotime(date('2015-03-01 H:i:s));//指定任一时间并转换成时间戳 $date= date("Y-m-d H:i:s", strtotime("+5 days", $time));//在指定时间加上任意天数并转换成日期格式
The above introduces the use of strtotime, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.