$Text= "Hello
My
Code"
所以我想要发生的是在哪里有一个新行插入
所以它应该看起来像
$NewText = "Hello<br>
My<br>
Code"
*
答案 0 :(得分:2)
您可以使用nl2br
,preg_replace
或str_replace
:
$text = "Hello\nMy\nCode";
$newText = nl2br($text);
$newText = preg_replace('/\r?\n/', "<br>\n", $text);
$newText = str_replace("\n", "<br>\n", $text);