gpt4 book ai didi

php - 如何在 php 中将日期转换为整数?

转载 作者:可可西里 更新时间:2023-11-01 06:39:01 26 4
gpt4 key购买 nike

我有一个带有日期列的 mysql 数据库,我使用的是日期时间数据类型。

但现在我想将我的数据类型从日期时间更改为长整型

我想知道如何将日期转换为任何整数值。

假设我有个约会

2012-03-27 18:47:00

所以我想知道是否可以转换成任何整数,例如 131221154

最佳答案

使用strtotime PHP的功能。

The function expects to be given a string containing an English date format and will try to parse that format into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 UTC), relative to the timestamp given in now, or the current time if now is not supplied.

echo strtotime('2012-03-27 18:47:00'); //--> which results to 1332866820

要再次返回,只需使用 date PHP的功能:

$long = strtotime('2012-03-27 18:47:00'); //--> which results to 1332866820
echo date('Y-m-d H:i:s', $long);

关于php - 如何在 php 中将日期转换为整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21796958/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com