Home > Backend Development > PHP Tutorial > 浅析php fwrite写入txt文件的时候用 rn不能换行的问题

浅析php fwrite写入txt文件的时候用 rn不能换行的问题

WBOY
Release: 2016-06-23 14:37:27
Original
1315 people have browsed it

以下是对php中fwrite写入txt文件的时候用 \r\n不能换行的问题进行了介绍,需要的朋友可以过来参考下
今天遇到了一个问题就是用fwrite写入txt文件的时候用 rn不能换行
试了很久都没找到办法!
突然之间想到一个东东以前看书见过后来还是用这个东东给解决了!
现在写出来预防将来忘记也希望能帮到需要帮助的朋友!
直接看代码:

<?php$stream = fopen("robots.txt", "w+");fwrite($stream, "你换行了吗\r\n我已经换行了!");//来源:www.jbxue.com?>
Copy after login

source:php.cn
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template