1、设置时区:在php.ini中设置date.timezone=PRC(中华人民共和国);
2、获取当前时间:
gmmktime()、mktime()、time()获取当前GMT日期的UNIX时间戳
microtime()获取当前UNIX时间戳和微秒数
getdate()可获得日期时间信息
3、格式化时间date('Y-m-d h:i:s')
4、计算时间差、从字符串解析时间、日期的加减运算
strtotime()、date()、time()
5、验证日期checkdate($month,$day,$year)