php时间代码合集
整理一些常用的php时间代码合集,便于需要的时候查看,调取。...("+7 day"));
//输出七天后的日期
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...获取起止时间戳
//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')