unix 时间戳和 php
我的数据库中有一个 unix 时间戳列表,我想选择今天的时间戳。
即如果今天是星期二,我想获取今天的所有时间戳?是否可以?有没有诸如strtotime("Today")
之类的东西?
任何帮助都会很棒
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我的数据库中有一个 unix 时间戳列表,我想选择今天的时间戳。
即如果今天是星期二,我想获取今天的所有时间戳?是否可以?有没有诸如strtotime("Today")
之类的东西?
任何帮助都会很棒
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
您可以使用 mktime() 生成开始的时间戳日期,然后查找时间戳大于该日期的数据库条目。
you can use mktime() to generate the timestamp for the start of the day and then find the database entries with a timestamp greater than that.
然后,您可以选择上述两个时间戳之间的时间戳:
then, you can just select where the timestamp is between the above 2 timestamps:
您可以使用
FROM_UNIXTIME()
将 unix 时间戳转换为 SQL 中的 SQL 日期,然后将它们与NOW()
进行比较You can convert the unix timestamps to sql dates in the SQL using
FROM_UNIXTIME()
, then compare those toNOW()
检查 DAY(NOW()) 和 MONTH(NOW()) 和 YEAR(NOW()) 是否等于 DAY(timestamp) 和 MONTH(timestamp) 和 YEAR(timestamp) 的适当值。
Check if DAY(NOW()) and MONTH(NOW()) and YEAR(NOW()) is equal to appropriate value of DAY(timestamp) and MONTH(timestamp) and YEAR(timestamp).
如果您使用的是 mysql:
If you're using mysql:
FROM_UNIXTIME(somefield )
可以与CURDATE
() 假设您使用的是 MySQLETA:
好吧,当这个答案被标记下来时,我受到了怀疑。所以我去做了一些测试。考虑到 MySQL 它绝对有效。那么为什么要降级呢?
考虑这个测试,它为表中的每一行输出 2 个相同的字段:
FROM_UNIXTIME(somefield)
can be compared toCURDATE
() assuming you're using MySQLETA:
Okay, I was assailed by doubt when this answer was marked down. So I went and did a couple of tests. Given MySQL it definitely works. So why the downmod?
Consider this test which outputs 2 identical fields for every row in a table: