PHP前端开发

PHP如何将“Wed Jun 14 15:45:47 +0800 2023”格式的日期字符串转换为时间戳?

百变鹏仔 1个月前 (12-15) #PHP
文章标签 转换为

php 日期字符串转换为时间戳

想要将一个类似于“wed jun 14 15:45:47 0800 2023”这样的日期字符串转换成 unix 时间戳,我们可以使用 php 的内置函数 strtotime()。

以下示例演示了如何进行转换:

var_dump(strtotime('wed jun 14 15:45:47 +0800 2023'));

输出结果:

立即学习“PHP免费学习笔记(深入)”;

int(1655237147)

因此,给定的日期字符串对应的 unix 时间戳为 1655237147。