使用xpath和xquery解析xml文件

发布于 2024-09-27 06:46:32 字数 717 浏览 8 评论 0原文

我有一个 xml 文件,

<category>
    <type name="SWEATERS">
        <product id =1>
            <itemNumber>1</itemNumber>
            <name>ProductA2</name>
            <price>345</price>
        </product>
   </type>
   <type name="PANTS">
        <product id=2>
            <itemNumber>4</itemNumber>
            <name>Product Test </name>
            <price>456</price>
        </product>
    </type>
</category>

我使用了 xquery

$xml->xpath('//category/type/product[@id=1]');

输出将给出 itemNumber 名称和价格。我如何获取类型名称,我的意思是毛衣

I have a xml file

<category>
    <type name="SWEATERS">
        <product id =1>
            <itemNumber>1</itemNumber>
            <name>ProductA2</name>
            <price>345</price>
        </product>
   </type>
   <type name="PANTS">
        <product id=2>
            <itemNumber>4</itemNumber>
            <name>Product Test </name>
            <price>456</price>
        </product>
    </type>
</category>

I used the xquery

$xml->xpath('//category/type/product[@id=1]');

The out put will give the itemNumber name and price.How i can get the type name i mean SWEATERS

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

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

发布评论

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

评论(2

ゃ人海孤独症 2024-10-04 06:46:32

您可以使用父 .. 属性,然后使用 @name 属性来获取此信息。

$xml->xpath('//category/type/product[@id=1]/../@name');

xPath 语法

You can get this using the parent .., then the @name attribute.

$xml->xpath('//category/type/product[@id=1]/../@name');

xPath Syntax

您正在查找 id 为 1 的产品元素的类型的 name 属性:

$xml->xpath('//category/type[product/@id=1]/@name');

You are looking for the name attribute of the type with a product element with an id of 1:

$xml->xpath('//category/type[product/@id=1]/@name');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文