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.
我正在寻找用于 PHP 和 MySQL 的 UNIX Timestap 的替代方案,因为我想开始一个项目,但我不知道如何存储过去和未来的日期。是否有易于使用的替代方案(“时间戳”必须用 PHP 计算)?
datetime() 字段类型并使用 NOW() 等,然后您可以利用 mysql 内置的 datediff 函数等和 date_add date_sub
所有这些都比内置的愚蠢的 php 时间/日期函数等要好得多,后者有 9000 万种做事方式,但没有一种能可靠地返回相同的结果。