1、上周日午夜
strtotime("last sunday");
2、本周日午夜
strtotime("this sunday");
3、今天午夜
strtotime("today");
4、昨天午夜
strtotime("yesterday");
5、上周同一時(shí)間
strtotime("-1 week");
6、上月第一天午夜:
strtotime("first day of last month midnight");
注意:不帶midnight的話,就是上月第一天這個(gè)時(shí)候的秒數(shù)!
7、本月第一天午夜
strtotime("first day of this month midnight");
8、本年第一天午夜
strtotime("first day of jan");
注意,下面的結(jié)果是錯(cuò)誤的,是本月的第一天:
strtotime("first day of year midnight");
9、指定日期:
strtotime("2011-01-01 midnight");
10、strtotime("first day of last year midnighth");會(huì)出現(xiàn)什么?
切記:會(huì)出現(xiàn)上年上個(gè)月份最后一天!
實(shí)際的測(cè)試:好像last和first都不能針對(duì)年,只對(duì)月有效
strtotime('last day of this year') doesn't work because last day of is only for month
use strtotime('-1 day', strtotime('first day of next year')) or anything else