vote up 0 vote down star
1

I want to convert a DOMNode object from a call to getElementsByTagName to a DOMElement in order to access methods like getElementsByTagName on the child element. In any other language, I would cast and it would be easy, but after some quick looking, PHP does not have object casting. So what I need to know is how to get a DOMElement object from a DOMNode object.

Thanks.

flag

Did you check if getElementsByTagName() actually returns DOMElement objects with something like if($item instanceof DOMElement)? If it is you don't need to cast, you can just use $item like it is a DOMElement – rojoca Jun 15 at 0:24
getElementsByTagName() returns a DOMNodeList, i did assume that a DOMNodeList was a list of DOMNode. the reason i thought you had to cast was because i had to cast in java when i wanted to do the same process. – Samuel Jun 15 at 0:41

2 Answers

vote up 4 vote down check

You don't need to cast anything, just call the method:

$links = $dom->getElementsByTagName('a');

foreach ($links as $link) {
    $spans = $link->getElementsByTagName('span');
}

And by the way, DOMElement is a subclass of DOMNode. If you were talking about a DOMNodeList, then accessing the elements in such a list can be done, be either the method presented above, with a foreach loop, either by using the item() method of DOMNodeList

$link_0 = $dom->getElementsByTagName('a')->item(0);
link|flag
vote up 0 vote down

You don't need to do any explicit typecasting, just check if your DOMNode object has a nodeType of XML_ELEMENT_NODE.

PHP will be perfectly happy with this.

If you use PHPLint to check your code you will notice that PHPLint complains about using getElementsByTagName on a DOMNode object. To get around this you need to jump through the following hoop:

/*.object.*/ $obj = $node;
$element = /*.(DOMElement).*/ $obj;

Then you will have a $element variable of the correct type and no complaints from PHPLint.

link|flag

Your Answer

Get an OpenID
or

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