奇怪的其他行为

时间:2012-08-19 22:42:30

标签: php if-statement

我想根据用户的阶段设置等待时间。我只是想快速测试一下并把它放在:

function towait(){
    if ($query = mysql_query('select fase, lastone from users where id = "'.$_SESSION['id'].'"')){
        while($r[]=mysql_fetch_array($query));

        if ($r[0]['fase'] == 0) {
            $wait = 0;
        } elseif ($r[0]['fase'] == 1) {
            $wait = 300;
        } elseif ($r[0]['fase'] == 2) {
            $wait = 600;
        } elseif ($r[0]['fase'] == 3) {
            $wait = 900;
        } elseif ($r[0]['fase'] == 4) {
            $wait = 1500;
        } elseif ($r[0]['fase'] == 5) {
            $wait = 2100;
        } elseif ($r[0]['fase'] == 6) {
            $wait = 2700;
        } elseif ($r[0]['fase'] == 7) {
            $wait = 3600;
        } elseif ($r[0]['fase'] == 8) {
            $wait = 5400;
        } elseif ($r[0]['fase'] > 8) {
            $wait = 7200;
        } else {
            $wait = 0;
        }

        if((time() - $r[0]['lastone']) > $wait) {
            //go ahead
            $go = 1;
        } else {
            //you have to wait
            //I know this looks weird, but I just save the hour when OK to go as a string in the format "HHuMM"
            $go = date("H", ($r[0]['lastone'] + $wachten + 60)) . "u" . date("i", ($r[0]['lastone'] + $wachten + 60));
        }

        return $go;
    } else {
        $go = -1;

        return $go;
    }
}

奇怪的是,在第7阶段之前一切正常,但每当用户处于第7阶段时,它就会停止工作(脚本不会让用户等待)。第8阶段也是如此。在第9阶段和第9阶段,一切都会再次发挥作用。

我知道这听起来很疯狂(并且代码编写得很糟糕),但我想知道是什么原因造成的。

1 个答案:

答案 0 :(得分:1)

最有可能的爆发是您的会话超时。这意味着,当您返回$ _SESSION ['id']时将为空,它将无效。

你可以在php.ini中增加会话时间:最容易阅读解释它的bblog:http://prajapatinilesh.wordpress.com/2009/01/14/manually-set-php-session-timeout-php-session/