Heim  >  Artikel  >  Backend-Entwicklung  >  从数据库中提取的带有HTML标签的数据经过XML传输后HTML标签消失了,如何保存用XML传输并且保存带有HTML标签的数据?

从数据库中提取的带有HTML标签的数据经过XML传输后HTML标签消失了,如何保存用XML传输并且保存带有HTML标签的数据?

WBOY
WBOYOriginal
2016-06-06 20:29:111225Durchsuche

$query=mysql_query("SELECT text from opus where id=$id",$dbconn);

<code>while($row=  mysql_fetch_array($query)){
    $text3=$row['text'];
    $text4=html_entity_decode($text3);
    echo $text4;
}</code>

如上面这样 直接echo $text是OK的

但是像下边这样用XML返回到前端页面格式就变了

<code>echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<response>";
echo "<msg>";
echo "<text>$text4</text>";
echo "<id>$id</id>";
echo "</msg>";
echo "</response>";

求解~~</code>

回复内容:

$query=mysql_query("SELECT text from opus where id=$id",$dbconn);

<code>while($row=  mysql_fetch_array($query)){
    $text3=$row['text'];
    $text4=html_entity_decode($text3);
    echo $text4;
}</code>

如上面这样 直接echo $text是OK的

但是像下边这样用XML返回到前端页面格式就变了

<code>echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<response>";
echo "<msg>";
echo "<text>$text4</text>";
echo "<id>$id</id>";
echo "</msg>";
echo "</response>";

求解~~</code>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn