PHP:XML解析问题
我正在使用 SimpleXML 来解析 XMl 文档。 我需要能够读取/更新节点属性。
在这个 XML 文档中,
<root>
<node>ABC</node>
<key>123</key>
<node2>
<key>456</key>
</node2>
<key>789</key>
</root>
我如何读取/更新所有关键节点?该文档没有特定的结构,因此我需要能够在不知道它们的位置的情况下找到它们。假设我想将关键节点中的数字乘以 2。我该怎么做呢?
谢了。
I'm using SimpleXML for parsing XMl documents.
I need to be able to read/update node attributes.
In this XML document
<root>
<node>ABC</node>
<key>123</key>
<node2>
<key>456</key>
</node2>
<key>789</key>
</root>
How can I read/update all key nodes? the document doesn't have a specific structure, so I need to be able to find them without knowing their position. Let's say I want to multiply by 2 the numbers in the key nodes. How can I do it?
Tks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现这个问题非常懒惰,但无论如何,
Stack Overflow 上有很多有关 SimpleXml 的问题。请在提出问题之前搜索它们。 PHP 手册还提供了涵盖基本用法的示例。
I find the question extremely lazy, but anyway
There is plenty of questions about SimpleXml on Stack Overflow. Please search for them before asking your question. The PHP Manual also has examples covering Basic Usage.
最简单的 API 是 QueryPath(或 phpQuery):
但使用“SimpleXML”也可以实现类似的功能
The simplest possible API is QueryPath (or phpQuery):
But something similar is possible with "SimpleXML"