搜尋
首頁後端開發php教程php+ajax即時聊天室
php+ajax即時聊天室Aug 04, 2016 am 08:56 AM
php

这篇文章主要介绍了值得分享的php+ajax实时聊天室,有图有真相,感兴趣的小伙伴们可以参考一下

非常经典的一款php+ajax实时聊天室,其中使用PHP文件保存聊天记录,按天划分,PHP实现聊天的功能只有一个文件,整合了PHP与AJAX技术,也就是说只要运行这一个文件就可以启动PHP的聊天室了,关于代码上面也是非常的简单,但是实现了聊天室一般的功能,聊天时的昵称,更改昵称的颜色,聊天字号大小,字体,加粗,窗体的变大变小等等,如果你想搞个聊天室来玩玩,这个源码完全可以满足普通的需求。

具体的效果看如下图:

关键代码:

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
//显示在线用户
$disonline = 1;
//新登陆时显示最近内容的条数(默认为30条)
$leastnum = 30;
//默认的房间名(默认是每天换一个文件),如果去掉d,则是每月换一个文件
$room = date("Y-m-d");
//房间保存路径,必须仿quot;/"结尾,可以丿quot;../",等
$roomdir = "rooms/";
//编码方式
$charset = "UTF-8";
//客户端最大显示内容条数(建议不要太大)
$maxdisplay = 300;
//语言包
$lang = array(
//聊天室描述
"description"=>"聊天室.", 
//聊天室标题
"title"=>"Welcome...!",
//第一个到聊天室的欢迎
"firstone"=>"<span style=&#39;font-size:16px;color:blue;&#39;>Welcome...!</span>", 
//当信息有禁止内容时显示
"ban" => array(&#39;法轮功&#39;, &#39;共产党&#39;, &#39;李洪志&#39;, &#39;fuck&#39;, &#39;叼&#39;, &#39;你妈的&#39;, &#39;他妈的&#39;),
//关键字
"keywords"=>"Welcome...!",
//发言提示
"hereyourwords" => "在这里发言!"
);

$touchs = 10;
$title = $lang["title"];
$earlier = 10;
$description = $lang["description"];
$origroom = $room;
$least = ($_GET["dis"])?intval($_GET["dis"]):$leastnum;
if ($_GET["room"]) $room = $_GET["room"];
$room = checkfilename($room);
if (!$room) $room = $origroom;
$filename = $roomdir.$room.".dat.php";
$datafile = $roomdir.$room.".php";

if (!is_dir($roomdir)) {
 @mkdir($roomdir, 0777) or exit(&#39;no this dir.&#39;);
}
if(file_exists($filename)){
 if ((int)filemtime($filename) + 1800 < time()) {
 unlink($filename);
 }
}

if (!file_exists($filename)) @file_put_contents($filename,&#39;<?php die();?>&#39;."\n".time()."|".$lang["firstone"]."\n");
if (!file_exists($datafile)) @file_put_contents($datafile,&#39;<?php die();?>&#39;."\n");
$action = $_GET["action"];

if (!function_exists("file_get_contents"))
{
 function file_get_contents($path)
 {
 if (!file_exists($path)) return false;
 $fp=@fopen($path,"r");
 $all=fread($fp,filesize($path));
 fclose($fp);
 return $all;
 }
}

if (!function_exists("file_put_contents"))
{
 function file_put_contents($path,$val)
 {
 $fp=@fopen($path,"w");
 fputs($fp,$val);
 fclose($fp);
 return true;
 }
}

function checkfilename($file)
{
 if (!$file) return "";
 $file = trim($file);
 $a = substr($file,-1);
 $file = eregi_replace("^[.\\\/]*","",$file);
 $file = eregi_replace("[.\\\/]*$","",$file);
 $arr = array("../","./","/","\\","..\\",".\\");
 $file = str_replace($arr,"",$file);
 return $file;
}

function get_ip()
{
 global $_SERVER;
 if ($_SERVER)
 {
 if ( $_SERVER[HTTP_X_FORWARDED_FOR] )
 $realip = $_SERVER["HTTP_X_FORWARDED_FOR"];
 else if ( $_SERVER["HTTP_CLIENT_ip"] )
 $realip = $_SERVER["HTTP_CLIENT_ip"];
 else
 $realip = $_SERVER["REMOTE_ADDR"];
 }
 else
 {
 if ( getenv( &#39;HTTP_X_FORWARDED_FOR&#39; ) )
 $realip = getenv( &#39;HTTP_X_FORWARDED_FOR&#39; );
 else if ( getenv( &#39;HTTP_CLIENT_ip&#39; ) ) 
 $realip = getenv( &#39;HTTP_CLIENT_ip&#39; );
 else
 $realip = getenv( &#39;REMOTE_ADDR&#39; );
 }
 return $realip;
}

function array2json($arr)
{
 if (function_exists(&#39;json_encode&#39;)) return json_encode($arr);
 $keys = array_keys($arr);
 $isarr = true;
 $json = "";
 for($i=0;$i<count($keys);$i++)
 {
 if ($keys[$i] !== $i)
 {
 $isarr = false;
 break;
 }
 }
 $json = $space;
 $json.= ($isarr)?"[":"{";
 for($i=0;$i<count($keys);$i++)
 {
 if ($i!=0) $json.= ",";
 $item = $arr[$keys[$i]];
 $json.=($isarr)?"":$keys[$i].&#39;:&#39;;
 if (is_array($item))
 $json.=array2json($item);
 else if (is_string($item))
 $json.=&#39;"&#39;.str_replace(array("\r","\n"),"",$item).&#39;"&#39;;
 else $json.=$item;
 }
 $json.= ($isarr)?"]":"}";
 return $json;
}

if ($action == "write")
{
 $color = $_GET[&#39;color&#39;];
 if (!eregi("[0-9a-fA-F]{6}",$color) || $color == "#000000") $color = "";
 $color = "#".$color;
 $size = intval($_GET["size"]);
 $arr = @file("php://input");
 $name = str_replace(array("\n","\r"),"",$arr[0]);
 $ip = get_ip();
 if ($disonline)
 {
 $onlines = @file_get_contents($datafile);
 $s1 = "|{$name}|{$ip}|";
 if (strpos($onlines,$s1) === false)
 {
 if (strpos($onlines,"|".$name."|") === false)
 {
 $fp = @fopen($datafile,"a+");
 if ($fp)
 {
 if (@flock($fp, LOCK_EX))
 {
 @fputs($fp,time()."|".time().$s1."\n");
 @flock($fp, LOCK_UN);
 }
 @fclose($fp);
 }
 }
 else
 {
 echo "NAME";
 die();
 }
 }
 }

 $s = "";
 $style = "";
 $font = $_GET["font"];
 if ($font == "songti") $font = "宋体";
 else if ($font == "heiti") $font = "黑体";
 else if ($font == "kaiti") $font = "楷体_GB2312";
 else $font = "";
 $style .= (!$font)?"":"font-family:".$font.";";
 $style .= (!$_GET["bold"])?"":"font-weight:bold;";
 $style .= (!$color || $color == "#")?"":"color:{$color};";
 $style .= (!$size || $size == "16")?"":"font-size:{$size}px;";
 $t = time();
 for($i = 1;$i<count($arr);$i++)
 {
 $content = $arr[$i];
 $content = str_replace(array("\n","\r"),"",$content);
 if ($content == "") continue;
 $content = preg_replace("!<img  src="/static/imghwm/default1.png"  data-src="smilies/ani_wink.gif"  class="lazy" \s+(.*?)/ alt="php+ajax即時聊天室" >!i", "[img $1/]", $content);
 $content = str_replace(array(&#39;<&#39;, &#39;>&#39;), array(&#39;<&#39;, &#39;>&#39;), $content);
 $content = preg_replace("!\[img (.*?)/\]!i", "<img  src="/static/imghwm/default1.png"  data-src="smilies/ani_wink.gif"  class="lazy"  $1/ alt="php+ajax即時聊天室" >", $content);
 $content = str_replace($lang[&#39;ban&#39;], &#39;&#39;, $content);
 $content = ($style)?"<span style=&#39;{$style}&#39;>{$content}</span>":$content;
 $ubbarray = array(&#39;[:ani_wink:]&#39;,
 &#39;[:big_eyes:]&#39;,
 &#39;[:cool:]&#39;,
 &#39;[:cry:]&#39;,
 &#39;[:eye_roll:]&#39;,
 &#39;[:grin:]&#39;,
 &#39;[:happy:]&#39;,
 &#39;[:not_impressed:]&#39;,
 &#39;[:smile:]&#39;,
 &#39;[:smile_eyes:]&#39;,
 &#39;[:stickout:]&#39;,
 &#39;[:straight:]&#39;,
 &#39;[:surprised:]&#39;,
 &#39;[:unhappy:]&#39;,
 &#39;[:wink:]&#39;);
 $content = str_replace($ubbarray, 
 array(&#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/ani_wink.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/big_eyes.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/cool.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/cry.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/eye_roll.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/grin.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/happy.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/not_impressed.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/smile.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/smile_eyes.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/stickout.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/straight.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/surprised.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/unhappy.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;,
 &#39;<img  src="/static/imghwm/default1.png"  data-src="smilies/wink.gif"  class="lazy"   / alt="php+ajax即時聊天室" >&#39;), 
 $content);
 $s.= $t."|".$name.":".$content."\n";
 }
 if (!$name) die("No Name!!");
 if (!$s) die("No Content!!");
 $fp = @fopen($filename,"a+");
 if (!$fp) die("repeat");
 if (@flock($fp, LOCK_EX))
 {
 @fputs($fp,$s);
 @flock($fp, LOCK_UN);
 }
 else die("repeat");
 @fclose($fp);
 echo "OK";
}
else if (trim($action) == "read")
{
 if (get_magic_quotes_runtime()) {
 set_magic_quotes_runtime(0);
 }
 $first = $_GET["first"];
 $lastmod = intval($_GET["lastmod"]);
 $alastmod = @filemtime($filename);
 $name = file_get_contents("php://input");
 $name = str_replace("\n","",$name);
 $ip = get_ip();
 $json = array();
 $json["lastmod"] = $alastmod;
 $item = array();
 $newonline = array();
 $offline = array();

 $lines = @file($filename);
 if ($alastmod > $lastmod && !$first)
 {
 foreach($lines as $l)
 {
 $item2 = array();
 $l = str_replace(array("\n","\r"),"",$l);
 if (strpos($l,"|") === false) continue;
 $arr = explode("|",$l);
 $t = intval($arr[0]);
 if ($t > $lastmod)
 {
 $item2["time"] = date("H:i:s",$t);
 $item2["word"] = stripslashes($arr[1]);
 $item[] = $item2;
 }
 }
 }
 else if ($first)
 {
 $item = array();
 $total = count($lines);
 for($i=$total-1;$i>=$total-$least;$i--)
 {
 if ($i<=0) break;
 $item2 = array();
 $l = str_replace(array("\n","\r"),"",$lines[$i]);
 if (strpos($l,"|") === false) continue;
 $arr = explode("|",$l);
 $t = intval($arr[0]);
 $item2["time"] = (date("m-d",time()) == date("m-d",$t))?date("H:i:s",$t):date("m-d H:i",$t);
 $item2["word"] = stripslashes($arr[1]);
 $item[] = $item2;
 }
 $item = array_reverse($item);
 }

 $s = "";
 $nt = time();
 $onlines = array();
 if($disonline)
 {
 $users = @file($datafile);
 foreach($users as $l)
 {
 $l = str_replace(array("\r","\n"),"",$l);
 if (strpos($l,"|") === false)
 {
 $s.=$l."\n";
 continue;
 }
 $arr = explode("|",$l);
 if ($nt - intval($arr[1]) < $touchs*2+1)
 {
 if (trim($name) == trim($arr[2]))
 {
 $s.= $arr[0]."|".time()."|".$name."|".get_ip()."|\n";
 }
 else $s.=$l."\n";
 $onlines [] = $arr[2];
 }
 }
 @file_put_contents($datafile,$s);
 $json["onlines"] = $onlines;
 }
 $json["lines"] = $item;
 echo array2json($json);
 if (!get_magic_quotes_runtime()) {
 set_magic_quotes_runtime(1);
 }
}
else
{
?>

安装说明:

因为这一款php+ajax实时聊天室的聊天记录是保存到PHP文件中的,所以不用导入数据库,安装自然也就方便多了,只需要将下载的文件包解压缩到可以运行PHP的根目录下即可.

源码下载:php+ajax实时聊天室

php+ajax即時聊天室php.cn.rar

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持PHP中文网。

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前By尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版