XPath ve XQuery'yi kullanarak xml dosyasını ayrıştırma

0 Cevap php

Ben bir xml dosyası var

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

Ben XQuery'yi kullanılan

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

Ben sadece adını ve price.How i ismi ve fiyat ile birlikte tip adı 'kazak' alabilirsiniz alıyorum bu xquery iam kullanıldığında

0 Cevap