Heim >php教程 >php手册 >php获取当前在线人数的方法

php获取当前在线人数的方法

WBOY
WBOYOriginal
2016-06-21 08:49:131286Durchsuche

下面分享一种利用php实现简单的计算当前网站在线人数的方法,只是简单的通过计算访问者ip地址从而得出一个大致的结果,不能精确的计算当前在线人数,对精度要求过高的可参考本站文章:

php统计在线人数,精确的统计在线人数的办法

<?php header('Content-type: text/html; charset=utf-8');
//author:www.Alixixi.com
$online_log='count.txt';//保存在线人数数据的文件, 
$timeout=45;//45秒内没有动作,则被认识是掉线 
$entries=file($online_log);//将文件作为一个数组返回,数组中的每个单元都是文件中相应的一行,包括换行符在内
$temp=array();
for($i=0;$i<count($entries);$i++){
	$entry=explode(',',trim($entries[$i]));
	if(($entry[0]!=getenv('REMOTE_ADDR'))&&($entry[1]>time())){
		array_push($temp,$entry[0].','.$entry[1].'n');//取出其他浏览者的信息,并去掉超时者,保存进$temp 
	}
}
array_push($temp,getenv('REMOTE_ADDR').','.(time()+($timeout))."\n");//更新浏览者的时间 
$users_online=count($temp);//计算在线人数
$entries=implode('',$temp);
//写入文件 
$fp=fopen($online_log,'w');
flock($fp,LOCK_EX);//注意 flock() 不能在NFS以及其他的一些网络文件系统中正常工作 
fputs($fp,$entries);
flock($fp,LOCK_UN);
fclose($fp);
echo '当前有'.$users_online.'人在线';



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn