|
gb_temp表:
temp1 用戶ID
temp2 流覽IP地址
temp3 online//做了個標(biāo)記,因為其他功能也要使用這個表
temp4 登陸時間
$onliNETime最長離線時間分鐘
db_class是我定義的一個數(shù)據(jù)庫操作類。
///////////////////
//在線統(tǒng)計
$db = new db_class;
$db->connect();
$limit_time = time() - ($onliNETime * 60);
$online_time = time();
$db->query("delete from gb_temp where (temp4<$limit_time or temp2='$ip') and temp1='$id' and temp3='online'"); //刪除離線$onliNETime分鐘的用戶
$db->query("insert into gb_temp (temp1,temp2,temp3,temp4) values ('$id','$ip','online','$online_time')");
$onres = $db->query("select count(*) from gb_temp where temp1='$id' and temp3='online'");
$onlineuser = $db->fetch_array($onres);
$onlineuser = $onlineuser[0];
php技術(shù):網(wǎng)站當(dāng)前的在線人數(shù),轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。