精確到每秒 實現(xiàn)在線人數(shù)的顯示
當(dāng)前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
<?php
session_start(); $dat_now1=date("H+i+s");//取時間 $p2=explode("+", $dat_now1); $dat_number1=$p2[0]*3600+$p2[1]*60+$p2[2];//取秒 if($online_time<>"")//上次刷新時間 {$dat_h=substr($online_time,11,2); $dat_i=substr($online_time,14,2); $dat_s=substr($online_time,17,2); $dat_number=$dat_h*3600+$dat_i*60+$dat_s; } $tmptime=$dat_number1-$dat_number;//上次到現(xiàn)在的間隔秒數(shù) if(session_is_registered(username)&&(($tmptime>300)¦¦($tmptime<0)))//如果不到5分鐘 { $online_time=date("Y-m-d H:i:s"); $str="replace lt_t_online set lt_username='$username',lt_lasttime=now()";//寫入數(shù)據(jù)庫 $res=mysql_query($str); } ?> 以上文件每分鐘自動刷新一次 以下是5分鐘運行一次的守護(hù)進(jìn)程 <? $str = "delete from lt_t_online where UNIX_TIMESTAMP(NOW())-UNIX_TIMESTAMP(lt_lasttime)>300"; mysql_query($str); 該文章在 2012/4/4 0:24:36 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |