如何使用 DOMDocument 和 xquery 编辑 xml 文件
我有一个 xml 文件
<events date="06-11-2010">
<event id="8">
<title>Proin porttitor sollicitudin augue</title>
<description><![CDATA[Lorem nunc.]]></description>
</event>
</events>
<events date="16-11-2010">
<event id="4">
<title>uis aliquam dapibus</title>
<description><![CDATA[consequat vel, pulvinar.</createCDATASection></description>
</event>
<event id="1"><title>You can use HTML and CSS</title>
<description><![CDATA[Lorem ipsum dolor sit amet]]></description></event></events>
如何使用 DOMDocument 和 xquery 编辑关于 id
的 xml 文件以保留 CDATA
提前感谢
链接文本
I have a xml file
<events date="06-11-2010">
<event id="8">
<title>Proin porttitor sollicitudin augue</title>
<description><![CDATA[Lorem nunc.]]></description>
</event>
</events>
<events date="16-11-2010">
<event id="4">
<title>uis aliquam dapibus</title>
<description><![CDATA[consequat vel, pulvinar.</createCDATASection></description>
</event>
<event id="1"><title>You can use HTML and CSS</title>
<description><![CDATA[Lorem ipsum dolor sit amet]]></description></event></events>
How i can edit the xml file with respect to id
using DOMDocument and xquery for preserving CDATA
Thanks in advance
link text
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您的文档具有无效的 XML 语法(
标记)。 FTFY:
现在,这是编辑活动标题/描述的解决方案:
First of all, your document has invalid XML syntax (the
</createCDATASection>
tag). FTFY:Now, here's a solution to edit title/description for your event: