如何在content-type中添加新的换行符:php生成的text / plain文档?

时间:2018-11-28 11:51:19

标签: php

我想在文本文件中添加链接中断。我该怎么办?

我的代码如下。

<?php 
header('Content-Type: text/plain');
?>
Line 1
Line 2
Line 2

我已尝试关注。

1. echo 'Line'."\n\r"
2. echo nl2br('Line'."\n\r")
3. echo 'Line' . PHP_EOL
4. echo 'Line' . "<br/>"

什么都没有。

1 个答案:

答案 0 :(得分:0)

\n用于当content-type为text/plain

时换行

<br>用于当content-type为text/html

时换行