--TEST-- DOMDocument::saveHTML() optional parameters --SKIPIF-- --FILE-- createElement('html'); $root = $doc->appendChild($root); $head = $doc->createElement('head'); $head = $root->appendChild($head); $title = $doc->createElement('title'); $title = $head->appendChild($title); $text = $doc->createTextNode('This is the title'); $text = $title->appendChild($text); echo $doc->saveHTML(NULL), "\n"; echo $doc->saveHTML($title), "\n"; ?> --EXPECTF-- This is the title This is the title