Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SniperSister/c858fdb350cd17793db1a0e43ed49122 to your computer and use it in GitHub Desktop.
Save SniperSister/c858fdb350cd17793db1a0e43ed49122 to your computer and use it in GitHub Desktop.
DOMDocument Debug
<?php
$dom = new DOMDocument();
$dom->loadHTML("<legend>Optional</legend>", LIBXML_HTML_NOIMPLIED + LIBXML_HTML_NODEFDTD);
$dom2 = new DOMDocument();
$dom2->loadXML("<div></div>");
$result = $dom2->importNode($dom->firstChild, true);
var_dump($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment