在 XML 中查找 php 特定参数
你好我有以下问题。
我有一个 XML 文件,并且我知道“uniquename=value2”的值。 我想提取 URL 的值。
<set uniquename="value1">
<items>
<item>
<units>
...
</units>
</item>
<item>
<units>
...
<url>http://www.something</url>
...
</units>
</item>
</items>
</set>
<set uniquename="value2">
<items>
<item>
<units>
...
</units>
</item>
<item>
<units>
...
<url>http://www.something2</url>
...
</units>
</item>
</items>
</set>
有人有建议吗?
谢谢大家。
Hello i have the follow problem.
I have e XML file and i know the value of "uniquename=value2". I want extract the value of URL.
<set uniquename="value1">
<items>
<item>
<units>
...
</units>
</item>
<item>
<units>
...
<url>http://www.something</url>
...
</units>
</item>
</items>
</set>
<set uniquename="value2">
<items>
<item>
<units>
...
</units>
</item>
<item>
<units>
...
<url>http://www.something2</url>
...
</units>
</item>
</items>
</set>
Someone has suggestions?
Thanks to all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 simplexml 和 xpath:
You can do it simply with simplexml and xpath: