当前位置: 首页 > 图文教程 > 网络编程 > PHP > php实现的在线人员函数库

PHP
php获取mysql版本的几种方法小结
php下判断数组中是否存在相同的值array_unique
PHP中ADODB类详解
常用的php ADODB使用方法集锦
用phpmyadmin更改mysql5.0登录密码
MySQL修改密码方法总结
使用 MySQL Date/Time 类型
How do I change MySQL timezone?
mysql时区问题
某大型网络公司应聘时的笔试题目附答案
PHP连接access数据库
优化PHP代码的40条建议
php简单静态页生成过程
PHP 5.0对象模型深度探索之属性和方法
PHP 5.0对象模型深度探索之对象复制
php,ajax实现分页
FCKeditor添加自定义按钮
php中用文本文件做数据库的实现方法
PHP详细彻底学习Smarty
php图片验证码代码

PHP 中的 php实现的在线人员函数库


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 74 ::
收藏到网摘: n/a

ME之前用的..找到了.. 在线人员函数库
//增加用户
function AddUser($username){
global $db;
$Ip=getenv('REMOTE_ADDR');
$Ip1 = getenv('HTTP_X_FORWARDED_FOR');
if (($Ip1 != "") && ($Ip1 != "unknown")) $Ip=$Ip1;
$current_time=date("Y-m-d H:i:s");
$SQL="select user from class_online where user='$username'";
$res=mysql_query($SQL,$db);
$row=@mysql_num_rows($res);
if($row==0) {
$SQL="insert into class_online (user,ip,lasttime) values('$username','$Ip','$current_time')";
mysql_query($SQL,$db);
}
}
//更新在线用户名单
function UpdateMember(){
global $db;
$SQL="delete from class_online where UNIX_TIMESTAMP()-UNIX_TIMESTAMP(lasttime)>180"; //3分钟不活动则退出
//echo $SQL;
mysql_query($SQL,$db);
}
//更新在线状态
function UpdateOnline($username){
global $db;
$current_time=date("Y-m-d H:i:s");;
$SQL="update class_online set lasttime='$current_time' where user='$username'";
$res=mysql_query($SQL,$db);
}
//删除用户
function OutOneUser($user){
global $db;
$SQL="delete from class_online where user='$user'";
mysql_query($SQL,$db);
return true;
}
//检查是否在线
function CheckUser($user){
global $db;
$SQL="select user from class_online where user='$user'";
$res=mysql_query($SQL,$db);
$row=mysql_num_rows($res);
if($row>0) return true;
else return false;
}
//取在线名单
function ReadOnlineName(){
global $db;
$SQL="select * from class_online";
$res=mysql_query($SQL,$db);
while($row=mysql_fetch_array($res)){
$result[]=$row[user];
}
return $result;
}
//********************在线人员函数库***************end