PHP SimpleXML 可以用于此任务吗?

发布于 2024-08-23 00:24:01 字数 321 浏览 11 评论 0原文

我希望对一些可选的 XML 数据运行某种循环。

节点可能看起来像这样:

<link1>
 <url>http://www.bleh.com</url>
 <text>Click here</text>
</link1>
<link2>
 <url>bleh.com</url>
 <text>Click here</text>
</link2>

确定这些节点是否存在并相应地解析它们的最佳方法是什么?

I'm looking to run some kind of loop on some optional XML data.

Nodes would potentially look like this:

<link1>
 <url>http://www.bleh.com</url>
 <text>Click here</text>
</link1>
<link2>
 <url>bleh.com</url>
 <text>Click here</text>
</link2>

What would be the best method to determine if these nodes exist and parse them accordingly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你另情深 2024-08-30 00:24:01

如果您使用 SimpleXML,那么您可以简单地使用 isset() 来确定节点是否存在。

If you're using SimpleXML, then you can simply use isset() to determine whether a node exists.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文