查找是否存在使用php的子节点

时间:2012-07-18 20:14:23

标签: php xml xml-parsing

我一直在研究这个问题,似乎无法找到我的代码问题。我试图得到一个物品的价格,如果有价格,这种方法很有效,但如果价格丢失则会引发错误。
这是代码:

    /* Amazon Offers ALGORITHM */
$parsed_xml = amazon_xml($isbn);

$current = $parsed_xml->ListMatchingProductsResult->Products->Product;
$asin = $current->Identifiers->MarketplaceASIN->ASIN;

// get information based on the items ASIN
$price_xml = amazonPrice_xml($asin);
    if($price_xml) {
    while(count($lowestPrices) < 2)
    {

        // check to see if there are values
        if(xml_child_exists($parsed_xml, $current->AttributeSets->children('ns2', true)->ItemAttributes->ListPrice->Amount))
           { 
            $listPrice = $current->AttributeSets->children('ns2', true)->ItemAttributes->ListPrice->Amount;
          } else {
            $listPrice = 0;
          }
        $currentPrice = $price_xml ->GetLowestOfferListingsForASINResult->Product->LowestOfferListings->LowestOfferListing;
        print_r($listPrice); 

我检查子节点的功能是:

    function xml_child_exists($xml, $childpath)
{
$result = $parsed_xml->xpath($childpath);
if (count($result)) {
    return true;
} else {
    return false;
}
}

2 个答案:

答案 0 :(得分:1)

使用property_exists() 我使用它来检查重复的孩子,同时使用SimpleXML将新的孩子添加到xml中。它应该适合你。如果您只传入子名称及其父名称。

function xml_child_exists($xml, $child)
{
 return property_exists($xml, $child);
}

答案 1 :(得分:1)

尝试此操作以检查子节点是否存在

function xml_child_exists($xml, $childpath)
 {
  //$result = $parsed_xml->xpath($childpath); $parsed_xml variable?
    $result = $xml->xpath($childpath);
   if (isset($result)) { // changed from count to isset
    return TRUE;
   } else {
    return FALSE;
   }
}