当前位置:Gxlcms > PHP教程 > omegle聊天室php写的简易聊天室代码

omegle聊天室php写的简易聊天室代码

时间:2021-07-01 10:21:17 帮助过:15人阅读

index.php

代码如下:



<BR>在线聊天 <BR>









_a.php

代码如下:



<BR>聊天室 <BR>

$person = @$_POST[person];
$msg = @$_POST[message];
if ($person!="" && $msg!=""){
$handle = fopen("msg.txt","r");
$tot = 0;
$oldmsg = array();
while ($content = fgets($handle)){
$oldmsg[] = $content;
++$tot;
}
fclose($handle);
unlink("msg.txt");
$fp = fopen("msg.txt","a+");
$time = date("h:i");
fwrite($fp,"".$person." in ".$time."  says that  ".$msg."
"."\n");
for ($i =0;$i<$tot;++$i){
if ($i>50) break;
fwrite($fp,$oldmsg[$i]);
}
}
?>
































_b.php

代码如下:




<BR>聊天室 <BR>

以上就介绍了omegle聊天室 php写的简易聊天室代码,包括了omegle聊天室方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行