How to make DOMDocument write standalone=yes in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:48:52Z http://stackoverflow.com/feeds/question/452361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/452361/how-to-make-domdocument-write-standaloneyes-in-php 0 How to make DOMDocument write standalone=yes in PHP? Milan Babuškov 2009-01-16T23:04:05Z 2009-01-16T23:33:55Z <p>I'm using PHP5 to create XML files. I have code like this:</p> <pre><code>$doc = new DOMDocument(); ... $xml_content = $doc-&gt;saveXML(); </code></pre> <p>The problem is that created XML code starts with a root node like this one:</p> <pre><code>&lt;?xml version="1.0"?&gt; </code></pre> <p>But I want it to be like this:</p> <pre><code>&lt;?xml version="1.0" standalone="yes" ?&gt; </code></pre> <p>I guess I need to call some function on $doc, but I can't figure out which one?</p> http://stackoverflow.com/questions/452361/how-to-make-domdocument-write-standaloneyes-in-php/452422#452422 4 Answer by Ciaran McNulty for How to make DOMDocument write standalone=yes in PHP? Ciaran McNulty 2009-01-16T23:33:55Z 2009-01-16T23:33:55Z <p>You want to set </p> <pre><code>$doc-&gt;xmlStandalone = true; </code></pre> <p>It's not a function of the class, it's a property so it's a little harder to find in the docs. You can read about it <a href="http://uk.php.net/manual/en/class.domdocument.php" rel="nofollow">here</a>.</p>