关于date()
程序员文章站
2022-03-25 16:59:44
时间的三个概念: 时区 全球分为24个时区,中国采用北京所在地东八区的时间作为全国统一使用的时间 世界时 以格林尼治(英国某地区)的地方时间为准,英文简称 时间戳 从 (1970年1月1日零时)开始到一个时间经过的秒数 默认时区函数 `bool date_default_timezone_set(s ......
时间的三个概念:
- 时区
全球分为24个时区,中国采用北京所在地东八区的时间作为全国统一使用的时间 - 世界时
以格林尼治(英国某地区)的地方时间为准,英文简称gmt
-
unix
时间戳
从unix纪元
(1970年1月1日零时)开始到一个时间经过的秒数
默认时区函数string date_default_timezone_get(void)
bool date_default_timezone_set(string $timezone_identifier)
//获取当前的unix
时间戳time()
//将一个时间戳进行格式化输出,$format:y m d h m s
string date(string $format[, int $timestamp])
//获取当前系统的时间数组array getdate([int $timestamp = time()])
//判断一个输出的日期是否有效,常用与用户提交的表单数据验证boolean checkdate(month, day, year)
//将英文文本的日期时间描述解析为unix
时间戳int strtotime(string $time[, int $now = time()])
echo strtotime("+1 week 2 days 4 hours 2 seconds");
//能够返回当前unix
时间戳和微秒数,参数为true
的话,将会返回一个浮点类型的时间,否则返回的是一个字符串。常用与计算函数的执行效率mixed microtime([bool $get_as_float])
上一篇: Postman——API开发协作平台
下一篇: hexo之环境搭建篇