我正在尝试在 2 个字符串之间创建多个换行符。
每次我需要 1 个换行符时,我都会重复 (echo ' ';)。
我可以只写一个语句来添加多个换行符吗?
用于str_repeat
重复文本。
例如echo str_repeat("<br>", 10); will add 10 line breaks
You can pass the new line character (\n
):
echo "line 1\nline2\n";
Returns:
line1
line2
you can use this
echo "string </br></br> string";
仅仅使用控制字符来获得你想要的东西怎么样,尽管使用 html 输出你可能需要使用
标签来代替
echo("foo\n\n");