我想检查自PHP上的函数上次查询以来是否超过24小时。首先,我必须从数据库中选择最后一个查询日期和时间,然后我需要用当前时间计算它,并检查自上次查询以来是否超过24小时。我怎么能这样做呢?需要Noob答案!
答案 0 :(得分:0)
如果你有日期时间行,你可以检查这样返回的行数:
$result = mysqli_query($link,"SELECT * FROM table WHERE datetime < NOW() - INTERVAL 1 DAY");
if(mysqli_num_rows($link, $result) > 0) {
// yes there was query in last 24 hours
} else {
// no there wasn't query in last 24 hours
}