Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含在页面上的文本文件,但是回车符不存在,因为它们在文本文档中。我怎样才能让它们在文本文档中保持原样?
$textfile = fopen('file.txt','r'); $readfile = fread($textfile); echo nl2br($readfile);
换行符在普通 HTML 中没有任何意义(除了空白)。您需要使用 将它们转换为 HTML 换行符nl2br(),或者将文本文件的内容放在一个<pre></pre>块中。
nl2br()
<pre></pre>