php如何将日期转换为时间戳
程序员文章站
2022-03-25 09:04:32
...
php如何将日期转换为时间戳
在php中可以通过使用函数“strtotime()”,将日期转换为时间戳。
strtotime()定义和用法
int strtotime ( string $time [, int $now = time() ] )
strtotime() 函数将任何字符串的日期时间描述解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数)。
注意:如果年份表示使用两位数格式,则值 0-69 会映射为 2000-2069,值 70-100 会映射为 1970-2000。
注意:请注意 m/d/y 或 d-m-y 格式的日期,如果分隔符是斜线(/),则使用美洲的 m/d/y 格式。如果分隔符是横杠(-)或者点(.),则使用欧洲的 d-m-y 格式。为了避免潜在的错误,您应该尽可能使用 YYYY-MM-DD 格式或者使用 date_create_from_format() 函数。
strtotime()参数
参数 |
描述 |
time |
必需。规定日期/时间字符串。 |
now | 可选。规定用来计算返回值的时间戳。如果省略该参数,则使用当前时间。 |
strtotime()返回值
成功则返回时间戳,失败则返回 FALSE。
推荐教程:《PHP教程》
以上就是php如何将日期转换为时间戳的详细内容,更多请关注其它相关文章!
上一篇: PHP定时器的说明