-2

我正在尝试在 2 个字符串之间创建多个换行符。


每次我需要 1 个换行符时,我都会重复 (echo ' ';)。

我可以只写一个语句来添加多个换行符吗?

4

4 回答 4

1

用于str_repeat重复文本。

例如echo str_repeat("<br>", 10); will add 10 line breaks

于 2012-08-11T02:29:08.193 回答
0

You can pass the new line character (\n):

echo "line 1\nline2\n";

Returns:

line1
line2
于 2012-08-11T02:29:15.367 回答
0

you can use this

 echo "string </br></br> string";
于 2012-08-11T02:30:29.817 回答
0

仅仅使用控制字符来获得你想要的东西怎么样,尽管使用 html 输出你可能需要使用
标签来代替

echo("foo\n\n");
于 2012-08-11T02:29:03.980 回答