我真的很困惑,我需要检查两个时间戳,并确定用户是否在过去15分钟内一直处于活动状态...
在数据库last_active int 11
中while ($m = $this->db->fetch($query))
{
$members[] = $m;
//What to do here:
if ($members['last_active']
}
答案 0 :(得分:1)
你做错了。
您必须在SQL级别而不是应用程序级别执行此操作。
像
一样进行查询SELECT * FROM users WHERE last_active > unix_timestamp() - 60*15