--TEST-- DOMImplementation Tests --SKIPIF-- --FILE-- hasFeature("1.0", "Core")); $doctype = $domimp->createDocumentType("HTML", "-//W3C//DTD HTML 4.01//EN", "http://www.w3.org/TR/html4/strict.dtd"); $dom = $domimp->createDocument(NULL, "HTML", $doctype); $html = $dom->documentElement; $html->appendChild(new DOMElement("body", "hello world")); $html->firstChild->appendChild(new DOMEntityReference("preformatted")); print $dom->saveXML(); ?> --EXPECT-- bool(false) hello world&preformatted;