Heim  >  Artikel  >  Backend-Entwicklung  >  PHP程序百行代码快速构建简易聊天室方法_PHP教程

PHP程序百行代码快速构建简易聊天室方法_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:28:02766Durchsuche

 基本功能:能登陆,聊天,记录在线人数IP事件,能控制聊天的字体颜色,自动把转化聊天中网址为链接地址,能定制聊天室标题、广告信息等等。使用文本作为存储媒体,又兴趣可以参考代码,并且进行扩展。

其实PHP作为快速开发的脚本语言是很棒的!

===代码===

以下为引用的内容: 
/**
 * 黑夜路人简易聊天室
 * 作者: heiyeluren
 * 创建: 2005-8-10 22:42
 * 修改: 2005-8-11 23:25
 */
error_reporting(7);
session_start();
header("ContentType:text/html;charset=gb2312");
define("SCRIPT", $_SERVER['SCRIPT_NAME']);
define("CHAT_NOTE", "./chat.txt");
define("ONLINE_LIST", "./online.txt");
define("REF_TIME", 5);
define("CHAT_NAME", "黑夜路人聊天室");
define("AD_MSG", "今天是中国情人节, 祝大家情人节快乐!!");

//获取值
if (isset($_GET['action']) && !empty($_GET['action'])) {
 $action = $_GET['action'];
}

//如果已经登陆那么直接跳到聊天界面
if (!isset($_GET['action']) && isset($_SESSION['username'])) {
 header("location:".SCRIPT."?action=chat");
}

//登陆提示
if (!isset($_GET['action'])) 
{
 if (!session_is_registered('username'))
 {
  echo "

[ ".CHAT_NAME." ] © 2005


  


  


   呢称:
  
  

   ";
  exit;
 }
}

//校验登陆
if ($action=='login')
{
 if (isset($_POST['login_user']) && !empty($_POST['login_user'])) {
  $username = $_POST['login_user'];
 } else {
  $username = "游客";
 }
 session_register('username');
 save_online($username, get_client_ip());
 header("location:".SCRIPT."?action=chat");
}

//开始聊天www.knowsky.com
if ($action=="chat")
{
 $online_sum = get_online_sum();
 echo "

[ ".CHAT_NAME." ]


  

name=show_win width=800 height=450 scrolling=auto frameborder=0>


   ".AD_MSG."    
[当前在线:$online_sum]
   height=60 scrolling=no frameborder=0>
 ";
}

//说话界面
if ($action=="say")
{
 echo "

[ ".CHAT_NAME." ]


 
onSubmit='return check()'>
  [".$_SESSION['username']."]说: maxlength=500 name=chatmsg style=' background-color:#99CC99;
width:550px; height:22px; border:1px solid:#000000'>
 
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn