代码:
echo "<xml>
<ToUserName><![CDATA[".(string)$msg->FromUserName."]]></ToUserName>
<FromUserName><![CDATA[".(string)$msg->ToUserName."]]></FromUserName>
<CreateTime>".time()."</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
<Content><![CDATA[你好\r\n\n123\n]]></Content>
</xml>";die;
这样不换行
echo "<xml>
<ToUserName><![CDATA[".(string)$msg->FromUserName."]]></ToUserName>
<FromUserName><![CDATA[".(string)$msg->ToUserName."]]></FromUserName>
<CreateTime>".time()."</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
<Content><![CDATA[你好>\r\n\n123\n]]></Content>
</xml>";die;
这样就换行了 而且>也会被输出;
这个该怎么解决呢?
1
huijiewei 2017-03-31 11:02:05 +08:00
PHP 换行很简单啊
$str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD; |
4
qq7588245 OP 这个问题太奇葩了。。。
|