PHP 时间戳,时间日期转换,加相应的时间

①年月日时间转换成--->时间戳

$strtotime = strtotime('2020-01-15 11:20:10')

②当前时间加七天

$date_time = date("Y-m-d H:i:s",strtotime("+7 day"));

以下摘自:https://blog.csdn.net/qq_24935119/article/details/90761169

首先说明一下date()函数的格式:

date('Y-m-d',timestamp);//输出年-月-日

date('Y-m-d H:i:s',timestamp);//输出年-月-日 时:分:秒

//php获取今天日期

date("Y-m-d",strtotime("today"));//strtotime(‘today’)输出今天的开始时间戳

date("Y-m-d",time());//time()输出当前秒时间戳

//php获取昨天日期

date("Y-m-d",strtotime("-1 day"));或date("Y-m-d",strtotime("yesterday"));

//php获取明天日期

date("Y-m-d",strtotime("+1 day"));或date("Y-m-d",strtotime("tomorrow "));

//php获取7天后日期

date("Y-m-d",strtotime("+7 day"));

//php获取30天后日期

date("Y-m-d",strtotime("+30 day"));

//php获取一周后日期

date("Y-m-d",strtotime("+1 week"));

//php获取一个月后日期

date("Y-m-d",strtotime("+1 month"));

//php获取一个月前日期

date("Y-m-d",strtotime("last month"));或date("Y-m-d",strtotime("-1 month"));

//php获取一年后日期

date("Y-m-d",strtotime("+1 year"));

//php获取一周零两天四小时五分钟两秒后时间

date("Y-m-d H:i:s",strtotime("+1 week 2 days 4 hours 5 minute 2 seconds"));

//php获取下个星期四日期

date("Y-m-d",strtotime("next Thursday"));

//php获取上个周一日期

date("Y-m-d",strtotime("last Monday"));

//php获取今天起止时间戳

mktime(0,0,0,date('m'),date('d'),date('Y'));

mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;

//php获取昨天起止时间戳

mktime(0,0,0,date('m'),date('d')-1,date('Y'));

mktime(0,0,0,date('m'),date('d'),date('Y'))-1;

//php获取上周起止时间戳

mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y'));

mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y'));

//php获取本月起止时间戳

mktime(0,0,0,date('m'),1,date('Y'));

mktime(23,59,59,date('m'),date('t'),date('Y'));

你可能感兴趣的:(PHP 时间戳,时间日期转换,加相应的时间)