检查用户在最近 15 分钟内是否活跃
我真的被困在这个问题上,我需要检查两个时间戳,并弄清楚用户在过去 15 分钟内是否处于活动状态......
在数据库中 last_active int 11
while ($m = $this->db->fetch($query))
{
$members[] = $m;
//What to do here:
if ($members['last_active']
}
I'm really stuck at this, I need to check two timestamps, and figure out if the user has been active for the last 15 minutes...
In database last_active int 11
while ($m = $this->db->fetch($query))
{
$members[] = $m;
//What to do here:
if ($members['last_active']
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你做错了。
您必须在 SQL 级别而不是应用程序级别执行此操作。
让你的查询像
You're doing it wrong.
You have to do it at the SQL level, not application level.
Make your query like