这篇文章给大家分享的是有关PHP中如何将date转为timestamp的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。在php中,可以使用strtotime()函数来将date(日期)转为timestamp(时间戳
这篇文章给大家分享的是有关PHP中如何将date转为timestamp的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
在php中,可以使用strtotime()函数来将date(日期)转为timestamp(时间戳),该函数可以将任何字符串的日期时间描述解析为Unix时间戳,语法格式“strtotime(字符串形式的日期)”。
本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑
php将date(日期)转为timestamp(时间戳)
<?phpecho strtotime("2021-06-03 16:00:10")."<br>"; //输出 1620979210echo strtotime("10 September 2021")."<br>"; //输出 1631203200echo strtotime("+1 day"), "<br />"."<br>"; //输出明天此时的时间戳 ?>
输出:
162270721016312032001622787020
说明:
strtotime() 函数将任何字符串的日期时间描述解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数)。该函数为 date() 的反函数,成功返回时间戳,否则返回 FALSE 。语法:
int strtotime ( string time [, int now] )
参数 | 描述 |
---|---|
time | 必需。规定日期/时间字符串。 |
now | 可选。规定用来计算返回值的时间戳。如果省略该参数,则使用当前时间。 |
示例:
<?php// 设置时区date_default_timezone_set("PRC");echo strtotime("now")."<br>";echo strtotime("now")."<br>";echo strtotime("10 September 2021")."<br>";echo strtotime("+1 day")."<br>";echo strtotime("+1 week")."<br>";echo strtotime("+1 week 2 days 4 hours 2 seconds")."<br>";echo strtotime("next Thursday")."<br>";echo strtotime("last Monday")."<br>";?>
输出:
16227008601622700860163120320016227872601623305660162349286216232544001622390400
感谢各位的阅读!关于“php中如何将date转为timestamp”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
--结束END--
本文标题: php中如何将date转为timestamp
本文链接: https://lsjlt.com/news/279045.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0