php 日期和时间

php.ini  配置时区 date.timezone

 

 

checkdate — 验证日期

 

date — 时间戳转字符串

getdate — 时间戳转关联数组

localtime — 时间戳转关联数组

date_parse — 字符串日期转为关联数组

date_parse_from_format — 指定字符串日期及其格式,返回关联数组

 

strtotime — 字符串转时间戳

mktime — 时分秒月日年这6个参数转为时间戳

time — 返回当前的 Unix 时间戳

microtime — 返回当前 Unix 时间戳和微秒数

 

 

 

 

 

 

date_default_timezone_get — 取得一个脚本中所有日期时间函数所使用的默认时区

date_default_timezone_set — 设定用于一个脚本中所有日期时间函数的默认时区

date_sunrise — 返回给定的日期与地点的日出时间

date_sunset — 返回给定的日期与地点的日落时间

 

gettimeofday — 取得当前时间

gmdate — 同date(),使用GMT时间

gmmktime — 同mktime(),使用GMT时间

idate — 将本地时间日期格式化为整数

strftime — 根据区域设置格式化本地时间/日期

gmstrftime — 根据区域设置格式化 GMT/UTC 时间/日期

strptime — 解析由 strftime 生成的日期/时间

php 日期和时间

上一篇:NodeJS - path模块简单使用


下一篇:php 变量、常量、类型、引用