最終更新:2012-04-04 (水) 03:44:26 (4404d)  

DOMElement
Top / DOMElement

innerHTML?

<?php 
function get_inner_html( $node ) { 
    $innerHTML= ''; 
    $children = $node->childNodes; 
    foreach ($children as $child) { 
        $innerHTML .= $child->ownerDocument->saveXML( $child ); 
    } 

    return $innerHTML; 
} 
?>