Home > Backend Development > PHP Tutorial > 关于php写入文本文件时回车的有关问题

关于php写入文本文件时回车的有关问题

WBOY
Release: 2016-06-13 13:19:44
Original
778 people have browsed it

关于php写入文本文件时回车的问题

今天在写日志文件的时候,发现写入的内容不会换行。查了一些资料才发现一些问题。

?

相关代码如下:

?

file_put_contents($_SESSION['projectname'],'资产负债表写入成功\r\n',FILE_APPEND);
Copy after login

?

?

$fp = fopen('log.txt','a');
fwrite($fp,'资产负债表写入成功\r\ntest');
fclose($fp);
Copy after login

?

代码并没有问题,但是写入文件之后,\r\n会直接输出,而不是回车。

?

但windows下\r\n确实是代表回车,也没有错误,郁闷了好一会儿,

?

后来,我把括字符串的引号由单引号改为双引号,一切就ok了

?

看似细小的差别,但是结果确出人意料。

?

虽然不清楚是什么原因,但还是记录下

?

Related labels:
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