How to make DOMDocument write standalone=yes in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T21:48:52Zhttp://stackoverflow.com/feeds/question/452361http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/452361/how-to-make-domdocument-write-standaloneyes-in-php0How to make DOMDocument write standalone=yes in PHP?Milan Babuškov2009-01-16T23:04:05Z2009-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->saveXML();
</code></pre>
<p>The problem is that created XML code starts with a root node like this one:</p>
<pre><code><?xml version="1.0"?>
</code></pre>
<p>But I want it to be like this:</p>
<pre><code><?xml version="1.0" standalone="yes" ?>
</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#4524224Answer by Ciaran McNulty for How to make DOMDocument write standalone=yes in PHP?Ciaran McNulty2009-01-16T23:33:55Z2009-01-16T23:33:55Z<p>You want to set </p>
<pre><code>$doc->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>