Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的 mysql 数据库中将一个字段设置为“时间戳”,但它仍然在查询中返回时间为 yyyy:mm:dd:time。我将其设置为时间戳,因为我想要自 1970 年以来的毫秒数。我该如何实现呢?
您使用什么语言?在 PHP 中,您可以使用函数将 MySQL 时间戳转换为从纪元开始的秒数strtotime。如果绝对绝望,您也可以使用字符串解析来获取时间戳的每个部分并自己计算从纪元开始的秒数。
strtotime
只需将 Unix 时间戳存储为 INT。然后当你从数据库调用它时,你可以在服务器端处理它以获得你想要的。