您的位置:首页技术文章
文章详情页

基于PHP的聊天室(二)

浏览:145日期:2023-12-30 17:21:48
现在我们终于有了写新文件所需的所有东西了: <?php // 打开文件,并且将文件长度截为0$open_file = fopen("messages.html", "w");// 写入文件的头信息fputs($open_file, $header);// 新的一行// (使用stripSlashes,因为我们不想让所有的转义字符出现在消息文件中)fputs($open_file, stripslashes($new_message));// 旧的行fputs($open_file, $old_messages);// 脚标fputs($open_file, $footer);// 关闭文件fclose($open_file);?>
标签: PHP