Skip to content

Instantly share code, notes, and snippets.

@airarm
Created November 30, 2019 21:45
Show Gist options
  • Save airarm/2b5be5c93dc2f070d85f070aabdea8e9 to your computer and use it in GitHub Desktop.
Save airarm/2b5be5c93dc2f070d85f070aabdea8e9 to your computer and use it in GitHub Desktop.
<?php
function DOMInnerHTML(DOMNode $element)
{
$innerHTML = "";
$children = $element->childNodes;
foreach ($children as $child){
$innerHTML .= $element->ownerDocument->saveHTML($child);
}
return $innerHTML;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment