Home > php教程 > php手册 > PHP教程.应用实例17

PHP教程.应用实例17

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-21 09:14:56
Original
1419 people have browsed it

教程|应用实例

基于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);




Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template