ホームページ >バックエンド開発 >PHPチュートリアル >Web サイトでオンラインになっている現在の人数_PHP チュートリアル
これは、私のマルチユーザー統計
gb_temp テーブルのオンライン統計部分です:
temp1 ユーザー ID
temp2 閲覧 IP アドレス
temp3 オンライン//他の関数もこのテーブルを使用する必要があるため、マークを付けました
temp4 ログイン時間
$onlinetime最長オフライン時間は分です
db_classは私が定義したデータベース操作クラスです。
///////////////////
//オンライン統計
$db = new db_class;
$limit_time = time ( ) - ($onlinetime * 60);
$online_time = time();
$db->query("delete from gb_temp where (temp4$db->query("insert into gb_temp (temp1,temp2,temp3,temp4) names ('$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];