本文实例讲述了PHP实现统计网站在线人数的方法。分享给大家供大家参考。具体实现方法如下:
PHP;">
$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,0);
unset($arr);
}
return $count;
}
$time = time();
$ip = getIpAddress();
$online_num = count_online_num($time,$ip);
echo $online_num;
?>
希望本文所述对大家的PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/21952.html