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.
我想获取处理登录尝试的当前时间。我想以可能的日期和小时/分钟/秒来获取时间。
我有一个数据库,其中包含一个名为 的字段last_attempt,其中包含上次登录尝试的日期和时间。
last_attempt
我应该为该字段使用哪种类型Datetime、、Timestamp或其他类型?Time还有我应该使用 PHP 中的什么方法?
Datetime
Timestamp
Time
PHP time() 就是你所需要的。它返回从一月纪元开始在服务器上发布的当前时间(以秒为单位)。(您最有可能将结果存储为无符号数。)