Skip to content

Instantly share code, notes, and snippets.

@extraordinaire
Created December 19, 2013 08:09
Show Gist options
  • Save extraordinaire/8035934 to your computer and use it in GitHub Desktop.
Save extraordinaire/8035934 to your computer and use it in GitHub Desktop.
<?php
function getHtmlFromDomElement($element) {
$doc = new DOMDocument();
foreach($element->childNodes as $child)
{
$doc->appendChild($doc->importNode($child, true));
}
return $doc->saveHTML();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment