vote up 0 vote down star

Hello, I am parsing an xml file from an API which I have converted into a DOMDocument in php. This is mostly fine but one problem I have is when I do this:

$feeditem->getElementsByTagName('extra');

as part of a forall statment and the element extra doesn't exist in one of the feeditems I am iterating through in the forall condition then I get an error.

I tried this:

if (!empty($feeditem->getElementsByTagName('extra'))){
$extratag = $feeditem->getElementsByTagName('extra');
    $extraname = $extratag->item(0)->getAttribute('name');
echo $extraname
    }

But I get the error

getAttribute() on a non-object

Note: When the 'extra' element is contained in every feeditem then the code runs perfect. it's just when one of the feed items doesn't contain an 'extra' element I get the error.

flag

72% accept rate
Sorry i meant as a foreach statement on the fourth line there – David Willis Oct 17 at 19:49
Can you update (edit) your post to reflect correct code – Ivan Nevostruev Oct 17 at 19:53

1 Answer

vote up 2 vote down check

Try to do use length property of DOMNodeList:

$nodes = $feeditem->getElementsByTagName('extra');
if ($nodes->length > 0) {
    $extraname = $extratag->item(0)->getAttribute('name');
}
link|flag
you don't really need the >0 check, but this will do what you want. – meder Oct 17 at 20:01
THANK YOU SO MUCH!! Been stuck on it since yesterday! Works! – David Willis Oct 17 at 20:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.