使用 SimpleXML 从 XML 中提取数据,第三级

发布于 2024-10-08 08:13:41 字数 862 浏览 0 评论 0原文

我正在尝试从 xml 文件中提取数据。问题是我知道如何做第二级,但不知道如何做第三级。

这是 XML 的示例测试

<createacct>
  <result>
    <options>
     <ns></ns>
    </options>
    <rawout>
    stuff
    </rawout>
    <status>1</status>
    <statusmsg>success</statusmsg>
  </result>
</createacct>

现在,我将如何从以下位置提取数据: 代码>?我可能还需要查看

我想也许:

$yop = new SimpleXMLElement ($xmlFile);
$rawout = array((string) $yop->rawout); // for rawout

依此类推。但是 又如何呢?

I'm trying to extract data from an xml file. The problem is I know how to do the second level, but not a third level.

Here's a sample test of the XML

<createacct>
  <result>
    <options>
     <ns></ns>
    </options>
    <rawout>
    stuff
    </rawout>
    <status>1</status>
    <statusmsg>success</statusmsg>
  </result>
</createacct>

Now, how would I extract the data from: <rawout>, <status> and <statusmsg>? I may need to look at <result><options><ns> as well.

I suppose maybe:

$yop = new SimpleXMLElement ($xmlFile);
$rawout = array((string) $yop->rawout); // for rawout

and so forth for <status> and <statusmsg>. But what for <result><options><ns>?

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

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

发布评论

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

评论(1

小瓶盖 2024-10-15 08:13:41

好吧,这可以解决问题:

$xml->result[0]->options->ns

Well, this does the trick:

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