無聊情況下,看能用比較少的代碼構建聊天室,一開始寫了整整100行把聊天室內完成,後來覺得很多功能沒有,又重新修改,加了不少代碼。其實不利用特別復雜的技術,比如模板、數據庫等等,一樣能做比較不錯的聊天室,適合個人使用。
基本功能:能登陸,聊天,記錄在線人數IP事件,能控制聊天的字體顏色,自動把轉化聊天中網址為鏈接地址,能定制聊天室標題、廣告信息等等。使用文本作為存儲媒體,又興趣可以參考代碼,並且進行擴展。
其實php(做為現在的主流開發語言)作為快速開發的腳本語言是很棒的!
===代碼===
<?php(做為現在的主流開發語言)
/**
* 黑夜路人簡易聊天室
* 作者: heiyeluren <heiyeluren_at_163.com>
* 創建: 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 " <p><h3 align=center>[ ".CHAT_NAME." ] © 2005</h3></p>
<p align=center>
<form action=".SCRIPT."?action=login method=post>
呢稱: <input type=text size=25 maxlength=30 name=login_user>
<input type=submit value=聊天>
</form></p>
";
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.acnow.net
if ($action=="chat")
{
$online_sum = get_online_sum();
echo "<head><title>[ ".CHAT_NAME." ]</title></head><center><body bgcolor=#C4BFB9 style=font-size:12px;>
<div style=border:1px solid #999966; width:802px;height:450><iframe src=".SCRIPT."?action=show name=show_win width=800 height=450 scrolling=auto frameborder=0></iframe></div><br>
<marquee width=70% scrollamount=2> ".AD_MSG." </marquee> [當前在線:$online_sum]
<iframe src=".SCRIPT."?action=say name=say_win width=800 height=60 scrolling=no frameborder=0>
";
}
//說話界面
if ($action=="say")
{
echo "<head><title>[ ".CHAT_NAME." ]</title></head><center><body bgcolor=#C4BFB9 style=font-size:12px;>
<form action=".SCRIPT."?action=save method=post name=chat onSubmit=return check()>
[".$_SESSION[username]."]說:<input type=text size=80 maxlength=500 name=chatmsg style= background-color:#99CC99; width:550px; height:22px; border:1px solid:#000000>