程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 網站當前的在線人數

網站當前的在線人數

編輯:關於PHP編程

這是我的多用戶統計的在線統計部分

gb_temp表:
temp1 用戶ID
temp2 流覽IP地址  
temp3 online//做了個標記,因為其他功能也要使用這個表
temp4 登陸時間

$onlinetime最長離線時間分鐘
db_class是我定義的一個數據庫操作類。

///////////////////
//在線統計
$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]; 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved