PHP SimpleXML 循环问题

发布于 2024-10-20 22:03:31 字数 1064 浏览 2 评论 0原文

我正在尝试使用 xPath 进行 foreach。它工作正常并且循环遍历 XML。

我的问题是我可以以某种方式使用 while 语句吗?我基本上需要查找某个属性的每个值,但不需要查找整个 XML。我希望 foreach 一旦达到某个属性就停止。

例子:

<InvoiceRet>

    <TxnID>23827-1290392819</TxnID>
    <TimeCreated>2010-11-21T21:26:59-05:00</TimeCreated>

        <InvoiceLineRet>
            <TxnLineID>23829-1290392819</TxnLineID>
        </InvoiceLineRet>

        <InvoiceLineRet>
            <TxnLineID>2382A-1290392819</TxnLineID>
        </InvoiceLineRet>

</InvoiceRet>

<InvoiceRet>

    <TxnID>2382F-1290392820</TxnID>

        <InvoiceLineRet>
            <TxnLineID>2382B-1290392819</TxnLineID>
        </InvoiceLineRet>

                    <InvoiceLineRet>
            <TxnLineID>2382B-1290392819</TxnLineID>
        </InvoiceLineRet>

</InvoiceRet>

我基本上需要循环第一组而不是第二组。所以我希望当它到达第二个时我可以停止循环。

问题是我不知道该怎么做。

任何帮助都会很棒。

谢谢!

I am trying to do a foreach using xPath. It's working fine and looping through the XML.

My question is can I somehow use a while statement with it. I basically need to find each value of a certain attribute but not for the entire XML. I want the foreach to stop once it hits a certain attribute.

Example:

<InvoiceRet>

    <TxnID>23827-1290392819</TxnID>
    <TimeCreated>2010-11-21T21:26:59-05:00</TimeCreated>

        <InvoiceLineRet>
            <TxnLineID>23829-1290392819</TxnLineID>
        </InvoiceLineRet>

        <InvoiceLineRet>
            <TxnLineID>2382A-1290392819</TxnLineID>
        </InvoiceLineRet>

</InvoiceRet>

<InvoiceRet>

    <TxnID>2382F-1290392820</TxnID>

        <InvoiceLineRet>
            <TxnLineID>2382B-1290392819</TxnLineID>
        </InvoiceLineRet>

                    <InvoiceLineRet>
            <TxnLineID>2382B-1290392819</TxnLineID>
        </InvoiceLineRet>

</InvoiceRet>

I basically need to loop through the first set of but not the second set. So I was hoping that I can stop the loop when it hits the second .

The problem is I have no idea how to do it.

Any help would be great.

Thanks!

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

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

发布评论

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

评论(1

〃安静 2024-10-27 22:03:31

如果你一直只想获得第一个,那么你可以在获得第一个之后就放弃。

foreach ($TxnID as $t){
     echo $t;
     break;
}

If you're only looking to get the first one all the time then, you could just break the loob after getting the first one.

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