0

在 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";

是第一个case,#2 case怎么写?

4

3 回答 3

1

换行符用“\n”表示:

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

于 2013-11-13T03:30:47.013 回答
0
$post_content += "this is a test\n";
$post_content += "&nbsp";
于 2013-11-13T03:30:56.103 回答
0

不同之处在于换行符。你用 PHP 来表示它,\n你这样做

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

在你的情况下

$post_content = "this is a test\n&nbsp";
于 2013-11-13T03:31:27.293 回答