微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php / mysqli查询未执行某些查询且没有错误

我的服务器上每分钟都有一个脚本运行,基本上可以完成一项cron任务,为我为一些朋友制作的小游戏更新数据库中的某些变量.

我遇到的问题是该脚本仅运行某些查询,但无法更新其他查询.我已验证它正在连接,但无法进行比较.任何帮助,将不胜感激.

这是我目前无法使用的通话.

//Query server
$query = "SELECT id,usr,dt,is_online FROM player_data WHERE is_online =1";
$result = MysqLi_query($conn,$query);
// If connection is good
if ($result = MysqLi_query($conn,$query)) 
    {
        echo "Connected </br>";
    /* fetch associative array */
    while ($row = MysqLi_fetch_assoc($result)) 
        {
            //Get time of Now,and time of last activity
            echo "loop started </br>";
            $Now = strtotime(date("Y-m-d h:i:s",strtotime("Now")));
            $before = strtotime(date("Y-m-d h:i:s",strtotime($row['dt'])));
            //Add five minutes to the last activity
            $then = $before + (60 * 5);
            //display the times
            echo $before . "</br>";
            echo $Now . "</br>";
            echo $then . "</br>";
            //determine if the time Now is more then 5 minutes after the last activity
            if (strtotime($Now) > strtotime($then))
                {
                    //set user to offline if more then 5 minutes has passed.
                    MysqLi_query($conn,"UPDATE player_data SET is_online = 0");
                    echo "1.User: " . $row['usr'] . "</br>";
                    echo "1.Database: " . $row['dt'] . "</br>";
                    echo "1.System: " . date('Y-m-d H:i:s') . "</br>";
                    echo "Now: " . $Now . "</br>";
                    echo "Before: " . $before . "</br>";
                    echo "then: " . $then . "</br>";
                }

        }

    }
`````````````````````````````````````````````````````````````````````````
this should set anyone who has not been active in the last 5 minutes to is_online = 0 but does not.

This is the actual output as of right Now with the last activity being more then 1.5 hours earlier.


Connected 
loop started 
1555687200
1555777824
1555687500
loop started 
1555687227
1555777824
1555687527
最佳答案
好吧,让我猜猜,脚本正在设置为所有人离线,对吗?
问题是您错过了UPDATE语句中的WHERE子句

MysqLi_query($conn,"UPDATE player_data SET is_online = 0");

因此,最好回顾一下该部分.应该是这样的

MysqLi_query($conn,"UPDATE player_data SET is_online = 0 WHERE id = " . $row['usr']);

另外,也不需要比较strtotime($Now)和strtotime($then):$Now和$then已经具有“ microtime”值,因此您可以这样做:

if ($Now > $then) {
    //your code here
}

顺便说一句,即使您没有使用任何REQUEST参数,我还是建议您使用准备好的语句.

原文地址:https://www.jb51.cc/mysql/531940.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐