|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-07-20 09:59 UTC] aharvey@php.net
-Status: Open
+Status: Bogus
[2010-07-20 09:59 UTC] aharvey@php.net
[2010-07-20 16:13 UTC] giorgio dot liscio at email dot it
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 16:00:01 2025 UTC |
Description: ------------ hi, test this: header("Content-Type: text/plain"); $doc = new \DOMDocument() $doc->appendChild($doc->createElement("root", NULL)); echo $doc->saveXML(); echo "\n\nshould be equivalent to:\n\n"; $doc = new \DOMDocument() $doc->appendChild($doc->createElement("root")); echo $doc->saveXML(); i hope other DOM methods will work good... otherwise fix is needed thank you!