PHP DOMDocument. HTML. . , DOCTYPE HTML, , Firebug HTML, . , , DOMDocument HTML. , , , , libxml .
$html = file_get_contents('http://example.com');
$dom = new DOMDocument;
$oldValue = libxml_use_internal_errors(true);
$dom->loadHTML($html);
libxml_use_internal_errors($oldValue);
echo $dom->saveHTML();