网站地图    收藏   

主页 > php专栏 > php综合实列 >

ajax php 聊天室实例代码(1) - 综合实例

来源:自学PHP网    时间:2014-12-02 13:09 作者: 阅读:

[导读] ?php *ajaxphp聊天室实例代码但是必须基于以下条款:*署名。你必须明确标明作者的名字。 *非商业用途。你不可将当前作品用于商业目的。*保...

ajax php 聊天室实例代码(1)

  1. <?php 
  2. /* 
  3. ajax php 聊天室实例代码 
  4. 但是必须基于以下条款: 
  5.   * 署名。你必须明确标明作者的名字。. 
  6.   * 非商业用途。 你不可将当前作品用于商业目的。 
  7.   * 保持一致。 如果你基于当前作品更改、变换或构造新作品,你应当按照与当前协议完全相同的协议分发最终作品 
  8.   * 对于任何二次使用或分发,你必须让其他人明确当前作品的授权条款 
  9.   * 在得到作者的明确允许下,这里的某些条款可以放弃 
  10. 此约定是法律文本 (完整的协议)的简单易读概要  
  11. ****************************************/ 
  12. //****************参数设置**************** 
  13. //显示在线用户 
  14. $disonline = true; 
  15. //新登陆时显示最近内容的条数(默认为30条) 
  16. $leastnum = 30; 
  17. //默认的房间名(默认是每天换一个文件),如果去掉d,则是每月换一个文件 
  18. $room = date("y-m-d"); 
  19. //房间保存路径,必须以/结尾 
  20. $roomdir = "rooms/"
  21. //编码方式 
  22. $charset = "utf-8";  
  23. //客户端最大显示内容条数(建议不要太大) 
  24. $maxdisplay = 300; 
  25.  
  26. //语言 
  27. $lang = array
  28. //聊天室描述 
  29. "description"=>"欢迎来到迷你ajax聊天室。最新版本 1.2。下载请到<a href='http://111cn.net' target=_blank>www.111cn.net</a>",  
  30. //聊天室标题 
  31. "title"=>"mini ajax chatroom by longbill",  
  32. //第一个到聊天室的欢迎 
  33. "firstone"=>"<span style='color:#16a5e9;'>welcome to longbill's mini ajax chatroom!</span>",  
  34. //当信息有禁止内容时显示 
  35. "ban"=>"i am a pig!"
  36. //关键字 
  37. "keywords"=>"聊天室,迷你,小型,ajax,chat,chatroom,longbill,111cn.net,php,网页特效"
  38. //发言提示 
  39. "hereyourwords" => "在这里发言!" 
  40. ); 
  41. error_reporting(e_all ^ e_notice ^ e_warning); 
  42. header("content-type:text/html; charset=utf-8"); 
  43. $get_past_sec = 3; //如果发现丢话,可以适当调大这个值 
  44. $touchs = 10; //检查在线人数的时间间隔 
  45.   
  46. if (!function_exists("file_get_contents")) 
  47.  function file_get_contents($path
  48.  { 
  49.   if (!file_exists($path)) return false; 
  50.   $fp=@fopen($path,"r"); 
  51.   $all=fread($fp,filesize($path)); 
  52.   fclose($fp); 
  53.   return $all
  54.  } 
  55. if (!function_exists("file_put_contents")) 
  56.  function file_put_contents($path,$val
  57.  { 
  58.   $fp=@fopen($path,"w"); 
  59.   fputs($fp,$val); 
  60.   fclose($fp); 
  61.   return true; 
  62.  } 
  63.   
  64. $title = $lang["title"]; 
  65. $earlier = 10; 
  66. $description = $lang["description"]; 
  67. $origroom = $room
  68. $least = ($_get["dis"])?intval($_get["dis"]):$leastnum
  69. $touchme = $_post['touchme']; 
  70. if (!is_dir($roomdir)) @mkdir($roomdiror die("error when creating folder $roomdir"); 
  71. $room = $_get['room']; 
  72. if (!$room$room = $_post["room"]; 
  73. $room = checkfilename($room); 
  74. if (!$room$room = $origroom
  75. $filename = $roomdir.$room.".dat.php"
  76. $datafile = $roomdir.$room.".php"
  77. if (!file_exists($filename)) @file_put_contents($filename,'<?php die();?>'."n".time()."|".$lang["firstone"]."n"); 
  78. if (!file_exists($datafile)) @file_put_contents($datafile,'<?php die();?>'."n"); 
  79. $action = $_post["action"]; 
  80. function checkfilename($file
  81.  if (!$filereturn ""
  82.  $file = trim($file); 
  83.  $a = substr($file,-1); 
  84.  $file = eregi_replace("^[.\/]*","",$file); 
  85.  $file = eregi_replace("[.\/]*$","",$file); 
  86.  $arr = array("../","./","/","\","..\",".\"); 
  87.  $file = str_replace($arr,"",$file); 
  88.  return $file

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论