标签:boolean OLE void 英文 默认 check 时区 获取 ring
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])
标签:boolean OLE void 英文 默认 check 时区 获取 ring
原文地址:https://www.cnblogs.com/jackw1/p/12581136.html