Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What function do you use to get innerHTML of a given DOMNode in the PHP DOM implementation? Can someone give reliable, checked solution?

Of course outerHTML will do too.

share|improve this question

2 Answers

up vote 23 down vote accepted

read in :

http://php.net/manual/en/book.dom.php

<?php 
function DOMinnerHTML($element) 
{ 
    $innerHTML = ""; 
    $children = $element->childNodes; 
    foreach ($children as $child) 
    { 
        $tmp_dom = new DOMDocument(); 
        $tmp_dom->appendChild($tmp_dom->importNode($child, true)); 
        $innerHTML.=trim($tmp_dom->saveHTML()); 
    } 
    return $innerHTML; 
} 
?> 

Example:

<?php 
$dom= new DOMDocument(); 
$dom->load($html_string); 
$dom->preserveWhiteSpace = false; 

$domTable = $dom->getElementsByTagName("table"); 

foreach ($domTable as $tables) 
{ 
    echo DOMinnerHTML($tables); 
} 
?> 
share|improve this answer
Thanks. It works fine. Shouldn't $dom->preserveWhiteSpace = false; be before document load? – JohnM2 Jan 18 '10 at 18:59

For outer html:

$html = $domElement->ownerDocument->saveXML($domElement);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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