PHP idate() 函数
定义和用法
idate() 函数将本地时间/日期格式化为整数。
语法
strftime(format,timestamp)
参数 | 描述 |
---|---|
format | 可选。规定如何返回结果。 |
timestamp | 可选。 |
说明
根据给定的格式字符对 timestamp 进行格式化,并返回数字结果。
timestamp 为可选项,默认值为本地当前时间,即 time() 的值。
提示和注释
注释:与 date() 不同,idate() 只接受一个字符作为 format 参数。
format 参数可识别以下字符
format 字符 | 描述 |
---|---|
B | Swatch Beat/Internet Time |
d | 月份中的第几天 |
h | 小时(12 小时格式) |
H | 小时(24 小时格式) |
i | 分钟 |
I | 如果启用夏时制则返回 1,否则返回 0 |
L | 如果是闰年则返回 1,否则返回 0 |
m | 月份的数字 |
s | 秒数 |
t | 本月的总天数 |
U | 自 Unix 纪元(January 1 1970 00:00:00 GMT)起的秒数 |