当前位置:首页 > 综合实例 > 列表

php实现简易聊天室应用代码

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-19 17:41:49 浏览: 评论:0 

聊天应用程序在网上非常常见,开发人员在构建这类应用程序时的选择也很多。这篇文章介绍了如何实现基于PHP-AJAX的聊天应用程序,并且不需要刷新页面就可以发送和接收消息,需要的朋友可以参考下

核心逻辑

在定义应用程序的核心功能之前,先来看一看聊天应用程序的基本外观。

通过聊天窗口底部的输入框输入聊天文本。点击Send按钮,就开始执行函数set_chat_msg。这是一个基于Ajax的函数,因此无需刷新页面就可以将聊天文本发送到服务器。程序在服务器中执行chat_send_ajax.php以及用户名和聊天文本。

  1. //  
  2. // Set Chat Message  
  3. //  
  4.    
  5. function set_chat_msg()  
  6. {  
  7.   if(typeof XMLHttpRequest != "undefined")  
  8.   {  
  9.     oxmlHttpSend = new XMLHttpRequest();  
  10.   }  
  11.   else if (window.ActiveXObject)  
  12.   {  
  13.     oxmlHttpSend = new ActiveXObject("Microsoft.XMLHttp");  
  14.   }  
  15.   if(oxmlHttpSend == null)  
  16.   {  
  17.     alert("Browser does not support XML Http Request");  
  18.     return;  
  19.   }  
  20.    
  21.   var url = "chat_send_ajax.php";  
  22.   var strname="noname";  
  23.   var strmsg="";  
  24.   if (document.getElementById("txtname") != null)  
  25.   {  
  26.     strname = document.getElementById("txtname").value;  
  27.     document.getElementById("txtname").readOnly=true;  
  28.   }  
  29.   if (document.getElementById("txtmsg") != null)  
  30.   {  
  31.     strmsg = document.getElementById("txtmsg").value;  
  32.     document.getElementById("txtmsg").value = "";  
  33.   }  
  34.    
  35.   url += "?name=" + strname + "&msg=" + strmsg;  
  36.   oxmlHttpSend.open("GET",url,true);  
  37.   oxmlHttpSend.send(null);  

PHP模块从Query String(查询字符串)中接收表单数据,更新到命名为chat的数据库表中。chat数据库表有命名为ID、USERNAME、CHATDATE和MSG的列。ID字段是自动递增字段,所以这个ID字段的赋值将自动递增。当前的日期和时间,会更新到CHATDATE列。

  1. require_once('dbconnect.php');  
  2.    
  3. db_connect();  
  4.    
  5. $msg = $_GET["msg"];  
  6. $dt = date("Y-m-d H:i:s");  
  7. $user = $_GET["name"];  
  8.    
  9. $sql="INSERT INTO chat(USERNAME,CHATDATE,MSG) " .  
  10.    "values(" . quote($user) . "," .  
  11.    quote($dt) . "," . quote($msg) . ");";  
  12.    
  13.    echo $sql;  
  14.    
  15. $result = mysql_query($sql);  
  16. if(!$result)  
  17. {  
  18.   throw new Exception('Query failed: ' . mysql_error());  
  19.   exit();  
  20. }  

为了接收来自数据库表中所有用户的聊天消息,timer函数被设置为循环5秒调用以下的JavaScript命令,即每隔5秒时间执行get_chat_msg函数。

var t = setInterval(function(){get_chat_msg()},5000);

get_chat_msg是一个基于Ajax的函数。它执行chat_recv_ajax.php程序以获得来自于数据库表的聊天信息。在 onreadystatechange属性中,另一个JavaScript 函数get_chat_msg_result被连接起来。在返回来自于数据库表中的聊天消息的同时,程序控制进入到 get_chat_msg_result函数。

  1. //  
  2. // General Ajax Call  
  3. //  
  4.    
  5. var oxmlHttp;  
  6. var oxmlHttpSend;  
  7.    
  8. function get_chat_msg()  
  9. {  
  10.   if(typeof XMLHttpRequest != "undefined")  
  11.   {  
  12.     oxmlHttp = new XMLHttpRequest();  
  13.   }  
  14.   else if (window.ActiveXObject)  
  15.   {  
  16.     oxmlHttp = new ActiveXObject("Microsoft.XMLHttp");  
  17.   }  
  18.   if(oxmlHttp == null)  
  19.   {  
  20.     alert("Browser does not support XML Http Request");  
  21.     return;  
  22.   }  
  23.    
  24.   oxmlHttp.onreadystatechange = get_chat_msg_result;  
  25.   oxmlHttp.open("GET","chat_recv_ajax.php",true);  
  26.   oxmlHttp.send(null);  
  27. }  

在chat_recv_ajax.php程序中,来自于用户的聊天消息会通过SQL select命令进行收集。为了限制行数,在SQL查询中还给出了限制子句(limit 200),即要求聊天数据库表中的最后200行。所获得的消息再返回给Ajax函数,用于在聊天窗口中显示内容。

  1. require_once('dbconnect.php');  
  2.    
  3. db_connect();  
  4.    
  5. $sql = "SELECT *, date_format(chatdate,'%d-%m-%Y %r')  
  6. as cdt from chat order by ID desc limit 200";  
  7. $sql = "SELECT * FROM (" . $sql . ") as ch order by ID";  
  8. $result = mysql_query($sqlor die('Query failed: ' . mysql_error());  
  9.    
  10. // Update Row Information  
  11. $msg="";  
  12. while ($line = mysql_fetch_array($result, MYSQL_ASSOC))  
  13. {  
  14.   $msg = $msg . "" .  
  15.     "" .  
  16.     "";  
  17. }  
  18. $msg=$msg . "<table style="color: blue; font-family: verdana, arial; " .  
  19.  "font-size: 10pt;" border="0">  
  20.  <tbody><tr><td>" . $line["cdt"] .  
  21.  " </td><td>" . $line["username"] .  
  22.  ": </td><td>" . $line["msg"] .  
  23.  "</td></tr></tbody></table>";  
  24.    
  25. echo $msg;  

数据准备就绪的同时,JavaScript函数会收集来自于PHP接收到的数据。这些数据将被安排置于DIV标签内。oxmlHttp.responseText会保留从PHP程序接收到的聊天消息,并复制到DIV标签的document.getElementById(“DIV_CHAT”).innerHTML属性。 

  1. function get_chat_msg_result(t)  
  2. {  
  3.   if(oxmlHttp.readyState==4 || oxmlHttp.readyState=="complete")  
  4.   {  
  5.     if (document.getElementById("DIV_CHAT") != null)  
  6.     {  
  7.       document.getElementById("DIV_CHAT").innerHTML = oxmlHttp.responseText;  
  8.       oxmlHttp = null;  
  9.     }  
  10.     var scrollDiv = document.getElementById("DIV_CHAT");  
  11.     scrollDiv.scrollTop = scrollDiv.scrollHeight;  
  12.   }  

下面的SQL CREATE TABLE命令可用于创建名为chat的数据库表。所有由用户输入的信息都会进入到数据库表中。

create table chat( id bigint AUTO_INCREMENT,username varchar(20),

chatdate datetime,msg varchar(500), primary key(id));

这段用于实现聊天应用程序的代码非常有意思,它可以改进成为一个完全成熟的HTTP聊天应用程序,创建该应用程序的逻辑也非常简单,即使是初学者理解起来也不会有任何困难,希望这篇文章对大家的学习有所帮助。

Tags: php聊天室应用

分享到: