php實(shí)現(xiàn)簡(jiǎn)易聊天室應(yīng)用代碼
核心邏輯
在定義應(yīng)用程序的核心功能之前,先來看一看聊天應(yīng)用程序的基本外觀,如以下截圖所示:

通過聊天窗口底部的輸入框輸入聊天文本。點(diǎn)擊Send按鈕,就開始執(zhí)行函數(shù)set_chat_msg。這是一個(gè)基于Ajax的函數(shù),因此無需刷新頁(yè)面就可以將聊天文本發(fā)送到服務(wù)器。程序在服務(wù)器中執(zhí)行chat_send_ajax.php以及用戶名和聊天文本。
//
// Set Chat Message
//
function set_chat_msg()
{
if(typeof XMLHttpRequest != "undefined")
{
oxmlHttpSend = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
oxmlHttpSend = new ActiveXObject("Microsoft.XMLHttp");
}
if(oxmlHttpSend == null)
{
alert("Browser does not support XML Http Request");
return;
}
var url = "chat_send_ajax.php";
var strname="noname";
var strmsg="";
if (document.getElementById("txtname") != null)
{
strname = document.getElementById("txtname").value;
document.getElementById("txtname").readOnly=true;
}
if (document.getElementById("txtmsg") != null)
{
strmsg = document.getElementById("txtmsg").value;
document.getElementById("txtmsg").value = "";
}
url += "?name=" + strname + "&msg=" + strmsg;
oxmlHttpSend.open("GET",url,true);
oxmlHttpSend.send(null);
}
PHP模塊從Query String(查詢字符串)中接收表單數(shù)據(jù),更新到命名為chat的數(shù)據(jù)庫(kù)表中。chat數(shù)據(jù)庫(kù)表有命名為ID、USERNAME、CHATDATE和MSG的列。ID字段是自動(dòng)遞增字段,所以這個(gè)ID字段的賦值將自動(dòng)遞增。當(dāng)前的日期和時(shí)間,會(huì)更新到CHATDATE列。
require_once('dbconnect.php');
db_connect();
$msg = $_GET["msg"];
$dt = date("Y-m-d H:i:s");
$user = $_GET["name"];
$sql="INSERT INTO chat(USERNAME,CHATDATE,MSG) " .
"values(" . quote($user) . "," .
quote($dt) . "," . quote($msg) . ");";
echo $sql;
$result = mysql_query($sql);
if(!$result)
{
throw new Exception('Query failed: ' . mysql_error());
exit();
}
為了接收來自數(shù)據(jù)庫(kù)表中所有用戶的聊天消息,timer函數(shù)被設(shè)置為循環(huán)5秒調(diào)用以下的JavaScript命令,即每隔5秒時(shí)間執(zhí)行g(shù)et_chat_msg函數(shù)。
var t = setInterval(function(){get_chat_msg()},5000);
get_chat_msg是一個(gè)基于Ajax的函數(shù)。它執(zhí)行chat_recv_ajax.php程序以獲得來自于數(shù)據(jù)庫(kù)表的聊天信息。在 onreadystatechange屬性中,另一個(gè)JavaScript 函數(shù)get_chat_msg_result被連接起來。在返回來自于數(shù)據(jù)庫(kù)表中的聊天消息的同時(shí),程序控制進(jìn)入到 get_chat_msg_result函數(shù)。
//
// General Ajax Call
//
var oxmlHttp;
var oxmlHttpSend;
function get_chat_msg()
{
if(typeof XMLHttpRequest != "undefined")
{
oxmlHttp = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
oxmlHttp = new ActiveXObject("Microsoft.XMLHttp");
}
if(oxmlHttp == null)
{
alert("Browser does not support XML Http Request");
return;
}
oxmlHttp.onreadystatechange = get_chat_msg_result;
oxmlHttp.open("GET","chat_recv_ajax.php",true);
oxmlHttp.send(null);
}
在chat_recv_ajax.php程序中,來自于用戶的聊天消息會(huì)通過SQL select命令進(jìn)行收集。為了限制行數(shù),在SQL查詢中還給出了限制子句(limit 200),即要求聊天數(shù)據(jù)庫(kù)表中的最后200行。所獲得的消息再返回給Ajax函數(shù),用于在聊天窗口中顯示內(nèi)容。
require_once('dbconnect.php');
db_connect();
$sql = "SELECT *, date_format(chatdate,'%d-%m-%Y %r')
as cdt from chat order by ID desc limit 200";
$sql = "SELECT * FROM (" . $sql . ") as ch order by ID";
$result = mysql_query($sql) or die('Query failed: ' . mysql_error());
// Update Row Information
$msg="";
while ($line = mysql_fetch_array($result, MYSQL_ASSOC))
{
$msg = $msg . "" .
"" .
"";
}
$msg=$msg . "<table style="color: blue; font-family: verdana, arial; " .
"font-size: 10pt;" border="0">
<tbody><tr><td>" . $line["cdt"] .
" </td><td>" . $line["username"] .
": </td><td>" . $line["msg"] .
"</td></tr></tbody></table>";
echo $msg;
數(shù)據(jù)準(zhǔn)備就緒的同時(shí),JavaScript函數(shù)會(huì)收集來自于PHP接收到的數(shù)據(jù)。這些數(shù)據(jù)將被安排置于DIV標(biāo)簽內(nèi)。oxmlHttp.responseText會(huì)保留從PHP程序接收到的聊天消息,并復(fù)制到DIV標(biāo)簽的document.getElementById(“DIV_CHAT”).innerHTML屬性。
function get_chat_msg_result(t)
{
if(oxmlHttp.readyState==4 || oxmlHttp.readyState=="complete")
{
if (document.getElementById("DIV_CHAT") != null)
{
document.getElementById("DIV_CHAT").innerHTML = oxmlHttp.responseText;
oxmlHttp = null;
}
var scrollDiv = document.getElementById("DIV_CHAT");
scrollDiv.scrollTop = scrollDiv.scrollHeight;
}
}
下面的SQL CREATE TABLE命令可用于創(chuàng)建名為chat的數(shù)據(jù)庫(kù)表。所有由用戶輸入的信息都會(huì)進(jìn)入到數(shù)據(jù)庫(kù)表中。
create table chat( id bigint AUTO_INCREMENT,username varchar(20),
chatdate datetime,msg varchar(500), primary key(id));
這段用于實(shí)現(xiàn)聊天應(yīng)用程序的代碼非常有意思,它可以改進(jìn)成為一個(gè)完全成熟的HTTP聊天應(yīng)用程序,創(chuàng)建該應(yīng)用程序的邏輯也非常簡(jiǎn)單,即使是初學(xué)者理解起來也不會(huì)有任何困難,希望這篇文章對(duì)大家的學(xué)習(xí)有所幫助。
- PHP框架實(shí)現(xiàn)WebSocket在線聊天通訊系統(tǒng)
- ThinkPHP5.0框架結(jié)合Swoole開發(fā)實(shí)現(xiàn)WebSocket在線聊天案例詳解
- Ajax PHP JavaScript MySQL實(shí)現(xiàn)簡(jiǎn)易無刷新在線聊天室
- PHP+swoole實(shí)現(xiàn)簡(jiǎn)單多人在線聊天群發(fā)
- 基于javascript、ajax、memcache和PHP實(shí)現(xiàn)的簡(jiǎn)易在線聊天室
- PHP聊天室簡(jiǎn)單實(shí)現(xiàn)方法詳解
- 基于Swoole實(shí)現(xiàn)PHP與websocket聊天室
- 值得分享的php+ajax實(shí)時(shí)聊天室
- 簡(jiǎn)單的php+mysql聊天室實(shí)現(xiàn)方法(附源碼)
- php+html5基于websocket實(shí)現(xiàn)聊天室的方法
- 基于PHP實(shí)現(xiàn)一個(gè)簡(jiǎn)單的在線聊天功能
相關(guān)文章
PHP實(shí)現(xiàn)圖片不變型裁剪及圖片按比例裁剪的方法
這篇文章主要介紹了PHP實(shí)現(xiàn)圖片不變型裁剪及圖片按比例裁剪的方法,涉及PHP裁剪縮略圖的常用技巧,需要的朋友可以參考下2016-01-01
如何批量替換相對(duì)地址為絕對(duì)地址(利用bat批處理實(shí)現(xiàn))
你的url鏈接是相對(duì)路徑你想把他批量替換成絕對(duì)路徑該怎么做呢?下面與大家分享下具體的實(shí)現(xiàn)思路及代碼,只需點(diǎn)擊bat文件,全部頁(yè)面里的相對(duì)地址就會(huì)變成絕對(duì)地址了2013-05-05
PHP英文字母大小寫轉(zhuǎn)換函數(shù)小結(jié)
這篇文章主要介紹了幾個(gè)PHP英文字母大小寫轉(zhuǎn)換函數(shù),分為首字母大小寫轉(zhuǎn)換和所有字母大小寫轉(zhuǎn)換,需要的朋友可以參考下2014-05-05

