我有一个基本的PHP页面,列出了数据库中的记录,每行一个。
目前我正在使用<br>
移动到下一行,但我确实需要用回车替换它,因此它可以像文本文件一样从外部读取。
有没有办法做到这一点?
答案 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
取决于操作系统: