DOMNode to DOMElement in php - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T02:58:28Zhttp://stackoverflow.com/feeds/question/994102http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/994102/domnode-to-domelement-in-php0DOMNode to DOMElement in phpSamuel2009-06-15T00:15:07Z2009-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#9941134Answer by Ionut G. Stan for DOMNode to DOMElement in phpIonut G. Stan2009-06-15T00:23:18Z2009-06-15T00:23:18Z<p>You don't need to cast anything, just call the method:</p>
<pre><code>$links = $dom->getElementsByTagName('a');
foreach ($links as $link) {
$spans = $link->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->getElementsByTagName('a')->item(0);
</code></pre>
http://stackoverflow.com/questions/994102/domnode-to-domelement-in-php/1079025#10790250Answer by Dominic Sayers for DOMNode to DOMElement in phpDominic Sayers2009-07-03T11:51:27Z2009-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>