php統計網站線上人數

*文
發布: 2023-03-18 14:46:02
原創
2893 人瀏覽過

php如何統計網站線上人數?本文主要介紹了php實現統計網站線上人數的方法,透過取得伺服器端網路參數及文字檔讀寫來實現統計線上人數的功能。希望對大家有幫助。

具體實作方法如下:


<?php
function getIpAddress() { // 取得当前用户的IP地址
 if (getenv(&#39;HTTP_CLIENT_IP&#39;)) {
 $ip = getenv(&#39;HTTP_CLIENT_IP&#39;);
 } elseif (getenv(&#39;HTTP_X_FORWARDED_FOR&#39;)) {
 $ip = getenv(&#39;HTTP_X_FORWARDED_FOR&#39;);
 } elseif (getenv(&#39;REMOTE_ADDR&#39;)) {
 $ip = getenv(&#39;REMOTE_ADDR&#39;);
 } else {
 $ip = $_SERVER[&#39;REMOE_ADDR&#39;];
 } 
 return $ip;
} 
function writeover($filename,$data,$method = &#39;w&#39;,$chmod = 0){
 $handle = fopen($filename, $method);
 !handle && die("文件打开失败");
 flock($handle, LOCK_EX);
 fwrite($handle, $data);
 flock($handle, LOCK_UN);
 fclose($handle);
 $chmod && @chmod($filename, 0777);
} 
function count_online_num($time, $ip) {
 $fileCount = &#39;./count.txt&#39;;
 $count = 0;
 $gap = 900; //15分钟不刷新页面就
 if (!file_exists($fileCount)) {
 $str = $time . "\t" . $ip . "\r\n";
 writeover($fileCount, $str, &#39;w&#39;, 1);
 $count = 1;
 } else {
 $arr = file($fileCount);
 $flag = 0;
 foreach($arr as $key => $val) {
  $val= trim($val);
  if ($val != "") {
  list($when, $seti) = explode("\t", $val);
  if ($seti ==$ip) {
   $arr[$key] = $time . "\t" . $seti;
   $flag = 1;
  } else {
   $currentTime = time();
   if ($currentTime - $when > 900) {
   unset($arr[$key]);
   }else{
   $arr[$key]=$val;
   }
  } 
  } 
 } 
 if ($flag == 0) {
  array_push($arr, $time . "\t" . $ip);
 } 
 $count = count($arr);
 $str = implode("\r\n", $arr);
 $str.="\r\n";
 writeover($fileCount, $str, &#39;w&#39;, 0);
 unset($arr);
 } 
 return $count;
} 
$time = time();
$ip = getIpAddress();
$online_num = count_online_num($time,$ip);
echo $online_num;
?>
登入後複製

#相關推薦:

##PHP解決session檔案阻塞

使用PHP處理不存在的圖片資源

PHP多態性與動態綁定

以上是php統計網站線上人數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!