利用PHP怎么對在線人數(shù)進行統(tǒng)計?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司自2013年創(chuàng)立以來,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站建設(shè)、做網(wǎng)站網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元安源做網(wǎng)站,已為上家服務(wù),為安源各地企業(yè)和個人服務(wù),聯(lián)系電話:18980820575PHP對session對象的封裝的很好,根據(jù)HTTP協(xié)議,每個范圍網(wǎng)站的訪客都可以生成一個的標(biāo)識符
echo session_id(); //6ed364143f076d136f404ed93c034201
這個就是統(tǒng)計在線人數(shù)的關(guān)鍵所在,只有有這個session_id 也就可以區(qū)分訪問的人了。因為每一個人都不同。
接下來,是怎么把session變量里面的值存到數(shù)據(jù)庫里面去,這里有將介紹另一個函數(shù)
bool session_set_save_handler ( callable $open , callable $close , callable $read , callable $write , callable$destroy , callable $gc ) //callable 可隨時支取的,請求即付的,隨時可償還的 // open(string $savePath, string $sessionName) 打開連接 //close() 關(guān)閉連接 //read(string $sessionId) 對出數(shù)據(jù) //write(string $sessionId, string $data) //寫入數(shù)據(jù) //destroy($sessionId) //刪除數(shù)據(jù) //gc($lifetime) //垃圾回收函數(shù)
注意,上面有幾個函數(shù)是有參數(shù)傳入的,你只要表明有傳送傳入就是的。PHP在執(zhí)行代碼的時候會自動讀取
session中對于的參數(shù)
接下來就是完成上面五個函數(shù)和一個主函數(shù)就可以了
session_set_save_handler( array("session","open"), array("session","close"), array("session","read"), array("session","write"), array("session","destroy"), array("session","gc") );
主函數(shù)就這樣完成了,但為什么要用array(“session”,"方法")來調(diào)用這些方法,我真心搞不懂
(基本懂了:凡是將對象的方法作為參數(shù)傳遞都需要使用這種形式:array(對象, "方法名"))
接下來就是每個函數(shù)的編寫
//鏈接數(shù)據(jù)的open function open($path,$sessname) { $db = mysql_connect("localhost","root","123456","test"); mysql_select_db("test",$db); mysql_query("SET NAMES UTF8"); return true; }
關(guān)閉數(shù)據(jù)可以鏈接的close
function close(){ $db = mysql_connect("localhost","root","123456","test"); mysql_close($db); return true; }
關(guān)鍵函數(shù)要開始了,顯示讀取函數(shù)read(),主要,read()函數(shù)是有值傳進去的,傳入的是session_id
function read($sid){ $sql = "select data from session where sid='{$sid}' and card='".self::$card."'"; $query = mysql_query($sql) or die(mysql_error()); $row = mysql_fetch_array($query); $row>0?$row["data"]:" "; }
第二個是寫入函數(shù),如果數(shù)據(jù)庫里面存在的數(shù)據(jù),只要更新時間就可以了,新數(shù)據(jù)寫入
function write($sid,$data) { $sql = "select sid from session where sid='{$sid}' and card='".self::$card."'"; $query = mysql_query($sql) or die(mysql_error()); $mtime = time(); $num = mysql_num_rows($query); if($num){ $sql = "UPDATE session SET data='{$data}', mtime ='{$mtime}'"; }else{ $sql = "INSERT INTO session (sid,data,mtime,ip,card) VALUES('{$sid}','{$data}','".time()."','{$_SERVER['REMOTE_ADDR']}','".self::$card."')"; } mysql_query($sql); return true; }
接下來就是體現(xiàn)PHP回收機制的函數(shù)了,兩個函數(shù)都有參數(shù)傳入。
function destroy($sid){ $sql = "DELETE FROM session WHERE sid='{$sid}'"; mysql_query($sql) or die(mysql_error()); return true; } function gc($max_time){ $max_time = 600; $sql = "DELETE FROM session WHERE `mtime`<'".(time()-$max_time)."'"; mysql_query($sql) or die(mysql_error()); return true; }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。