Guest User

Untitled

a guest
May 27th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. $latestSessionOnlineTime=(int)$this->getSessionVar("lastseen");
  2.         if((time()-$latestSessionOnlineTime)>20)
  3.         {
  4.         for($i=0;$i<4;$i++)
  5.         {
  6.             if($joinedRooms[$i]==1)
  7.                 $this->joinRoom($i,0);
  8.         }
  9.             $this->setSessionVar("lastseen",time());
  10.         }
Add Comment
Please, Sign In to add comment