I'm migrating from SimpleXML to the SAX parser but running into issues properly retrieving attributes from nested elements within my xml feed.
I'm able to grab the attributes out using the code below, but rather than trying to get it from the specific tag, my script seems to try on every tag. As such warnings are thrown and if the attribute name exists in multiple tags, it's printed back out again.
Parser Routine (contained within a PHP class)
function startElement($parser, $tag, $attributes) {
switch($tag) {
case 'product':
$this->product=array('id'=>$attributes['id'], manufacturerName'=>'','merchantProduct'=>'','price'=>'');
break;
case 'manufacturerName';
case 'merchantProduct':
if(isset($attributes['mid'])){ echo $attributes['mid']; }
case 'price':
if ($this->product) {
$this->product_elem = $tag;
}
break;
}
XML Data example
<product category_id="5" id="123455">
<name>Some Amazing Product</name>
<manufacturerPartNumber>ABCD</manufacturerPartNumber>
<manufacturerName>Guys Who Make Stuff</manufacturerName>
<merchantListing included="1">
<merchantProduct mid="555555">
<in_stock type="stock-1"></in_stock>
<condition type="cond-0"></condition>
<price>19.89</price>
</merchantProduct>
</merchantListing>
</product>
The attributes I am trying to get are merchantProduct->mid, in_stock->type and condition->type
Using the echo statement above I get the proper output when the loop gets to that tag but it errors on all other tags. I assume there is a better way to access these that I am not seeing.
Thanks,