【发布时间】:2014-03-21 17:36:46
【问题描述】:
喂! 我可以读取一个xml文件吗:
<items>
<item>
<id_product>1</id_product>
<title>Product title</title>
<description><p>This is a<b>PRODUCT</b></p></description>
</item>
<item>
<id_product>2</id_product>
<title>Another Product title</title>
<description><p>This is the second <b>PRODUCT</b></br><a href="#">click here</a></p></description>
</item>
</itmes>
并用 php 将其写入数据库?我的想法是我也想用格式来写它(锚、粗体、斜体、p 等)
【问题讨论】:
-
您的 xml 已损坏。结束标签是错误的。 IT 看起来像是 RSS 提要的一部分。但在 RSS 中,描述通常是带有 html 片段的 text/cdata 节点。如果是您必须先阅读 xml 元素,然后再阅读 html 片段,请参阅:stackoverflow.com/questions/22479419/…