我在其中有一个平面文件 database-001.txt 文件。我的txt文件如下所示:
Bill
message Bill goes here
1571436403
==
John
message John goes here
1571436126
==
Earl
message earl goes here
1571436051
==
要读取.txt文件,请使用以下代码:
$flatfile = file_get_contents('database-001.txt');
echo $flatfile;
?>
但是像这样使用它,它会生成:
Bill message Bill goes here 1571436403==Johnmessage John goes here1571436126==Earlmessage earl goeshere 1571436051==
我如何阅读与.txt文件中内容完全相同的带有换行符和白线的内容?
答案 0 :(得分:2)
尝试:
$flatfile = file_get_contents('database-001.txt');
echo nl2br($flatfile);
正在发生的事情是,浏览器无法理解\n
。您应该改用<br>
。 nl2br
将所有经典的新行\n
转换为<br>
。
您可以通过以下示例轻松看到这一点:
$str1 = "regular \n newline";
$str2 = "browser <br> newline";
echo str1;
echo str2;