使用前请查看phpinfo()中的date模块是否支持,默认时区可能是UTC或者Europe/Berlin。
1、date_default_timezone_set() 设定脚本中所有日期的默认时区。
2、date_default_timezone_get() 获取脚本中所有日期的默认时区。
3、date() 格式化一个日期
<?php
date('Y-m-d' , time()); //今天
date('Y-m-d' , strtotime('-1 day')); //昨天
date('Y-m-d' , strtotime('+1 day')); //明天
date('Y-m-d' , strtotime('+1 week')); //一周后
date('Y-m-d' , strtotime('next Thursday')) //下周四
date('Y-m-d' , strtotime('last Monday')); //上周一
date('Y-m-d' , strtotime('last month')); //一个月前
date('Y-m-d' , strtotime('+10 year')); //十年后
4、time() 获取当前时间戳
5、mktime() 返回一个日期的时间戳