0

我知道以前有人问过这个问题,并且我已经尝试了一些建议,但我没有从 XML 文件中获取信息。我需要从 xml 文件中获取卖家数量(OfferListingCount 条件="Any")。这是 XML:

    <?xml version="1.0"?>
<GetCompetitivePricingForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetCompetitivePricingForASINResult ASIN="0312479743" status="Success">
<Product xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
<Identifiers>
  <MarketplaceASIN>
    <MarketplaceId>ATVPDKIKX0DER</MarketplaceId>
    <ASIN>0312479743</ASIN>
  </MarketplaceASIN>
</Identifiers>
<CompetitivePricing>
  <CompetitivePrices>
    <CompetitivePrice belongsToRequester="false" condition="Used" subcondition="Good">
      <CompetitivePriceId>2</CompetitivePriceId>
      <Price>
        <LandedPrice>
          <CurrencyCode>USD</CurrencyCode>
          <Amount>36.23</Amount>
        </LandedPrice>
        <ListingPrice>
          <CurrencyCode>USD</CurrencyCode>
          <Amount>36.23</Amount>
        </ListingPrice>
        <Shipping>
          <CurrencyCode>USD</CurrencyCode>
          <Amount>0.00</Amount>
        </Shipping>
      </Price>
    </CompetitivePrice>
  </CompetitivePrices>
  <NumberOfOfferListings>
    <OfferListingCount condition="Any">34</OfferListingCount>
    <OfferListingCount condition="Used">29</OfferListingCount>
    <OfferListingCount condition="New">5</OfferListingCount>
  </NumberOfOfferListings>

这是我的 PHP 更新代码:

    $priceComp_xml = amazonCompPrice_xml($asin);
$compPricing = $priceComp_xml->xpath('/OfferListingCount[@condition="Any"]');

$priceComp_xml 从 xml 文件返回信息,我正在尝试使用下一行来获取我需要的信息。当我运行代码时,得到一个空数组。我如何获得这些信息?

4

1 回答 1

0

http://php.net/manual/en/function.simplexml-load-file.php

$xml = simplexml_load_file($xml_file);

        $output = array();
        foreach ($xml as $row => $item_data)
        {
            // Attributes
            $attributes =  $item_data->attributes();

加载它,获取属性。

于 2012-08-28T13:42:39.913 回答