欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP+jquery+ajax实现即时聊天功能实例

程序员文章站 2023-11-11 16:55:58
本文实例讲述了php+jquery+ajax实现即时聊天功能的方法。分享给大家供大家参考。具体如下: 这是一个简单的利用jquery与php做的一个聊天室的源码,我们这里...

本文实例讲述了php+jquery+ajax实现即时聊天功能的方法。分享给大家供大家参考。具体如下:

这是一个简单的利用jquery与php做的一个聊天室的源码,我们这里定时利用ajax读取数据库并进行刷新了,下面直接参上源码,实例代码如下:

index.html页面如下:

复制代码 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="js/jquery-1.9.1.min.js"></script>
<script>
var chat = {
 init:function(){
  chat.first();
  $('#chat_btn').unbind('click').click(function(){
   chat.send();
  });
  $('#my_chat').keyup(function(){
   if(event.keycode == 13){
    chat.send();
   }
  });
 },
 first:function(){
  $.getjson('data.php',{
   action:'first',
   type:'l'
  },function(data){
   chat.btn_status._true();
   $('#mwebtime').html(data.time);
   $('#chat textarea').val(data.chat);
   $('#chat textarea').stop(true,true).animate({scrolltop:9999}, 1);
   chat.socket();
  });
 },
 send:function(){
  chat.btn_status._false();
  $.getjson('send.php',{
   txt:$('#my_chat').val(),
   type:'l'
  },function(data){
   if(data.status==200){
    chat.btn_status._false();
    $('#my_chat').val('');
    settimeout(function(){
     chat.btn_status._true();
    },2000);
   }
  });
 },
 socket:function(){
  $.getjson('data.php',{
   action:'while',
   type:'l'
  },function(data){
   $('#mwebtime').html(data.time);
   $('#chat textarea').val(data.chat);
   $('#chat textarea').stop(true,true).animate({scrolltop:9999}, 1); 
   chat.socket();
  });
 },
 btn_status:{
  _false:function(){
   $('#chat_btn').html('等待').attr('disabled',true);
  },
  _true:function(){
   $('#chat_btn').html('发言').attr('disabled',false);
  }
 }
}
chat.init();
</script>
</head>
 
<body>
<div id="chat">
 <textarea wrap="physical" style="line-height:20px;font-size:12px;height:100px;width:200px;"></textarea>
 <br />
 <input id="my_chat" type="text" />
 <button id="chat_btn" disabled="disabled">发言</button>
</div>
<div id="mwebtime"></div>
</body>
</html>

data.php页面如下:

复制代码 代码如下:
<?php
header("expires: mon, 26 jul 1997 05:00:00 gmt"); 
header("last-modified: ".gmdate("d, d m y h:i:s")." gmt"); 
header("cache-control: no-cache, must-revalidate"); 
header("pramga: no-cache");
set_time_limit(0);
$get = $_get['action'];
$type = $_get['type'];
$file = $type.'.txt';
if(isset($get) && isset($type) && file_exists($file)){
 switch($get){
  case 'first':
   $chat = file_get_contents($file);
   $json=array(
    'status' => 200,
    'time' => gmdate("s"),
    'chat' => $chat,
   );
   echo json_encode($json);
   break;
  case 'while':
   $oldsize = filesize($file);
   $newsize = filesize($file);
   while(true){
    if($oldsize!=$newsize){
     $chat = file_get_contents($file);
     $json=array(
      'status' => 200,
      'time' => gmdate("s"),
      'chat' => $chat,
     );
     echo json_encode($json);
     exit;
    }
    clearstatcache();
    $newsize = filesize($file);
    usleep(10000);
   }
   break;
 }
}
?>

send.php页面如下:

复制代码 代码如下:
<?php
$json = array();
$txt = isset($_get['txt'])?$_get['txt']:'';
$type = isset($_get['type'])?$_get['type']:'';
if($txt!=''){
 $file = $type.".txt";
 if(file_exists($file)){
  $fp = fopen($file,"a");
  $str = "rn".'admin:'.$txt;
  //$str = $txt."n"//linux;
  fwrite($fp, $str);
  fclose($fp);
  $json['status']=200;
  echo json_encode($json);
  exit;
 }
}
?>

希望本文所述对大家的php程序设计有所帮助。