📜  如何在PHP字符串中插入换行符?

📅  最后修改于: 2022-05-13 01:56:40.311000             🧑  作者: Mango

如何在PHP字符串中插入换行符?

在本文中,我们将讨论如何在PHP字符串中插入换行符。我们将通过使用nl2br()函数来获得它。此函数用于在放置 '\n' 的地方换行。

句法:

nl2br("string \n");

其中, 字符串是输入字符串。

示例 1:在字符串中插入换行符的PHP程序。

PHP


PHP


输出
This is first line 
This is second line

示例 2:

PHP


输出
This is first line 
This is second line
This is third line
This is forth line