PHP用回车代替<br/>?

时间:2014-11-12 11:44:07

标签: php return

我有一个基本的PHP页面,列出了数据库中的记录,每行一个。

目前我正在使用<br>移动到下一行,但我确实需要用回车替换它,因此它可以像文本文件一样从外部读取。

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:1)

是的,你可以。如果要将其用作文本文件,可以将标题text/plain与回车结合使用。

<?php
    header("Content-Type:text/plain");
    echo 'Rule 1'. "\r"; //*Note the dubble quote!*
    echo 'Rule 2'. "\r"; //*Note the dubble quote!*
?>

修改 在Matt Gibsen的(有用的)评论之后

您也可以使用“\ n”组合,例如:

echo 'Rule 1'. "\r\n"; //*Note the dubble quote!*

何时使用\n\r\r\n取决于操作系统:

  • Linux / Unix :\ n
  • Windows :\ r \ n