我想在文本文件中添加链接中断。我该怎么办?
我的代码如下。
<?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/>"
什么都没有。
答案 0 :(得分:0)
\n
用于当content-type为text/plain
<br>
用于当content-type为text/html