date()格式为:date($format, $timestamp),format为格式、timestamp为韶光戳(可选)。
time()返回当前韶光的 Unix 韶光戳,没有参数。
strtotime($time, $now)将任何英文文本的日期韶光描述解析为 Unix韶光戳。$time为必填,规定要解析的韶光字符串;$now用来打算返回值的韶光戳,如果省略该参数,则利用当前韶光。
####date()函数字符串格式中各个字母的含义:
a - “am” 或是 “pm”
A - “AM” 或是 “PM”
d - 几日,二位数字,若不敷二位则前面补零; 如: “01” 至 “31”
D - 星期几,三个英笔墨母; 如: “Fri”
F - 月份,英文全名; 如: “January”
h - 12 小时制的小时; 如: “01” 至 “12”
H - 24 小时制的小时; 如: “00” 至 “23”
g - 12 小时制的小时,不敷二位不补零; 如: “1” 至 12"
G - 24 小时制的小时,不敷二位不补零; 如: “0” 至 “23”
i - 分钟; 如: “00” 至 “59”
j - 几日,二位数字,若不敷二位不补零; 如: “1” 至 “31”
l - 星期几,英文全名; 如: “Friday”
m - 月份,二位数字,若不敷二位则在前面补零; 如: “01” 至 “12”
n - 月份,二位数字,若不敷二位则不补零; 如: “1” 至 “12”
M - 月份,三个英笔墨母; 如: “Jan”
s - 秒; 如: “00” 至 “59”
S - 字尾加英文序数,二个英笔墨母; 如: “th”,“nd”
t - 指定月份的天数; 如: “28” 至 “31”
U - 总秒数
w - 数字型的星期几,如: “0” (星期日) 至 “6” (星期六)
Y - 年,四位数字; 如: “1999”
y - 年,二位数字; 如: “99”
z - 一年中的第几天; 如: “0” 至 “365”
####strtotime($time)用法举例:
echo strtotime('2012-03-22');输出结果:1332427715(此处结果为随便写的,仅作解释利用)
echo strtotime(date('Y-d-m'));输出结果:(结合date(),结果同上)(韶光日期转换为韶光戳)
strtotime()还有个很强大的用法,参数可加入对付数字的操作、年月日周英笔墨符,示例如下:
echo date('Y-m-d H:i:s',strtotime('+1 day'));输出结果:2012-03-23 23:30:33(会创造输出来日诰日此时的韶光)
echo date('Y-m-d H:i:s',strtotime('-1 day'));输出结果:2012-03-21 23:30:33(昨天此时的韶光)
echo date('Y-m-d H:i:s',strtotime('+1 week'));输出结果:2012-03-29 23:30:33(下个星期此时的韶光)
echo date('Y-m-d H:i:s',strtotime('next Thursday'));输出结果:2012-03-29 00:00:00(下个星期四此时的韶光)
echo date('Y-m-d H:i:s',strtotime('last Thursday'));输出结果:2012-03-15 00:00:00(上个星期四此时的韶光)
1
2
3
4
5
6
7
8
####一些常用的格式化韶光:
echo "来日诰日凌晨的韶光戳:".strtotime(date('Y-m-d',strtotime('+1 day')));
echo"一周后:".date("Y-m-d",strtotime("+1 week"));
echo"一周零两天四小时两秒后:".date("Y-m-d G:H:s",strtotime("+1 week 2 days 4 hours 2 seconds"));
echo"下个星期四:".date("Y-m-d",strtotime("next Thursday"));
echo"上个周一:".date("Y-m-d",strtotime("last Monday"));
echo"一个月前:".date("Y-m-d",strtotime("last month"));
echo"一个月后:".date("Y-m-d",strtotime("+1 month"));
echo"十年后:".date("Y-m-d",strtotime("+10 year"));
//本日开始韶光 $beginToday= date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d'),date('Y')));
//本日结束韶光 $endToday= date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1);
//昨天开始的韶光 $beginYesterday= date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d')-1,date('Y')));
//昨天结束韶光 $endYesterday= date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d'),date('Y'))-1);
//本周开始韶光 $beginThisweek = date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),date("d")-date("w")+1,date("Y")));
//本周结束韶光 $endThisweek = date("Y-m-d H:i:s",mktime(23,59,59,date("m"),date("d")-date("w")+7,date("Y")));
//上周开始的韶光 $beginLastweek= date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y')));
//上周结束韶光 $endLastweek= date("Y-m-d H:i:s",mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y')));
//本月开始韶光 $beginThismonth = date("Y-m-d H:i:s",mktime(0,0,0,date('m'),1,date('Y')));
//本月结束韶光 $endThismonth = date("Y-m-d H:i:s",mktime(23,59,59,date('m'),date('t'),date('Y')));
//上月开始韶光 $beginLastmonth = date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m")-1,1,date("Y")));
//上月结束韶光 $endLastmonth = date("Y-m-d H:i:s",mktime(23,59,59,date("m") ,0,date("Y")));
//本季度开始韶光 $season = ceil((date('n'))/3);
//当前是第几季度 $beginThisseason = date('Y-m-d H:i:s', mktime(0, 0, 0,$season3-3+1,1,date('Y')));
//本季度结束韶光 $endThisseason = date('Y-m-d H:i:s', mktime(23,59,59,$season3,date('t',mktime(0, 0 , 0,$season3,1,date("Y"))),date('Y')));
//上季度开始韶光 $season1 = ceil((date('n'))/3)-1;
//上季度是第几季度 $beginLastseason = date('Y-m-d H:i:s', mktime(0, 0, 0,$season13-3+1,1,date('Y')));
//上季度结束韶光 $endLastseason = date('Y-m-d H:i:s', mktime(23,59,59,$season13,date('t',mktime(0, 0 , 0,$season13,1,date("Y"))),date('Y')));
//本年开始韶光 $beginThisyear=date("Y",time())."-1"."-1";
//本年结束韶光 $endThisyear =date("Y",time())."-12"."-31";