PHP字符串中的HTML换行符?

时间:2013-11-13 03:27:41

标签: php html

在Wordpress编辑器中,以下代码与我有所不同:

案例#1

this is a test 

案例#2

this is a test
 

第一种情况将在句子后面添加一个空格,#2的情况将在句子下留下一个空行。

现在我正在编写一个PHP,其中包含PHP字符串中的html代码,

$post_content = "...."

如何在$ post_content变量中区分上述两种情况?

如果我写

$post_content += "this is a test";
$post_content += "&nbsp";

这是第一种情况,如何编写#2案例?

3 个答案:

答案 0 :(得分:1)

换行符由“\ n”表示:

$post_content += "this is a test\n ";

答案 1 :(得分:0)

$post_content += "this is a test\n";
$post_content += "&nbsp";

答案 2 :(得分:0)

区别在于换行符。你用\n来表示它在PHP中,你可以这样做

$str = "This is a string.\nThis is the second line.";

在你的情况下

$post_content = "this is a test\n&nbsp";