/ Published in: PHP
URL: http://it-ride.blogspot.com/2009/11/domelement-innerhmtl.html
Gets the outerHTML of a DOMElement. For a more optimal version check the URL.
Expand |
Embed | Plain Text
<?php function outerHTML($e) { $doc = new DOMDocument(); $doc->appendChild($doc->importNode($e, true)); return $doc->saveHTML(); } ?>
You need to login to post a comment.
