DOMNode to DOMElement in php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:58:28Z http://stackoverflow.com/feeds/question/994102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/994102/domnode-to-domelement-in-php 0 DOMNode to DOMElement in php Samuel 2009-06-15T00:15:07Z 2009-07-03T11:51:27Z <p>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.</p> <p>Thanks.</p> http://stackoverflow.com/questions/994102/domnode-to-domelement-in-php/994113#994113 4 Answer by Ionut G. Stan for DOMNode to DOMElement in php Ionut G. Stan 2009-06-15T00:23:18Z 2009-06-15T00:23:18Z <p>You don't need to cast anything, just call the method:</p> <pre><code>$links = $dom-&gt;getElementsByTagName('a'); foreach ($links as $link) { $spans = $link-&gt;getElementsByTagName('span'); } </code></pre> <p>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</p> <pre><code>$link_0 = $dom-&gt;getElementsByTagName('a')-&gt;item(0); </code></pre> http://stackoverflow.com/questions/994102/domnode-to-domelement-in-php/1079025#1079025 0 Answer by Dominic Sayers for DOMNode to DOMElement in php Dominic Sayers 2009-07-03T11:51:27Z 2009-07-03T11:51:27Z <p>You don't need to do any explicit typecasting, just check if your DOMNode object has a nodeType of <code>XML_ELEMENT_NODE</code>.</p> <p>PHP will be perfectly happy with this.</p> <p>If you use <a href="http://www.icosaedro.it/phplint" rel="nofollow">PHPLint</a> to check your code you will notice that PHPLint complains about using <code>getElementsByTagName</code> on a DOMNode object. To get around this you need to jump through the following hoop:</p> <pre><code>/*.object.*/ $obj = $node; $element = /*.(DOMElement).*/ $obj; </code></pre> <p>Then you will have a $element variable of the correct type and no complaints from PHPLint.</p>