PHP的simpleXML如何以格式化的方式保存文件?

我想使用PHP的SimpleXML将一些数据添加到现有的XML文件。 问题是它将所有数据添加到一行中:

<name>blah</name><class>blah</class><area>blah</area> ... 

等等。 所有在一条线。 如何引入换行符?

我如何做到这一点?

 <name>blah</name> <class>blah</class> <area>blah</area> 

我正在使用asXML()函数。

谢谢。

您可以使用DOMDocument类来重新格式化您的代码:

 $dom = new DOMDocument('1.0'); $dom->preserveWhiteSpace = false; $dom->formatOutput = true; $dom->loadXML($simpleXml->asXML()); echo $dom->saveXML(); 

Gumbo的解决scheme是有用的。 你可以使用上面的simpleXml工作,然后在最后添加这个来回显和/或保存格式。

下面的代码回声并将其保存到一个文件(请参阅代码注释,并删除任何你不想要的):

 //Format XML to save indented tree rather than one line $dom = new DOMDocument('1.0'); $dom->preserveWhiteSpace = false; $dom->formatOutput = true; $dom->loadXML($simpleXml->asXML()); //Echo XML - remove this and following line if echo not desired echo $dom->saveXML(); //Save XML to file - remove this and following line if save not desired $dom->save('fileName.xml'); 

使用dom_import_simplexml转换为DomElement。 然后使用其容量来格式化输出。

 $dom = dom_import_simplexml($simple_xml)->ownerDocument; $dom->preserveWhiteSpace = false; $dom->formatOutput = true; echo $dom->saveXML(); 

当Gumbo和Witman回答时, 使用DOMDocument :: load和DOMDocument :: save加载和保存来自现有文件的XML文档(这里有很多新手)。

 <?php $xmlFile = 'filename.xml'; if( !file_exists($xmlFile) ) die('Missing file: ' . $xmlFile); else { $dom = new DOMDocument('1.0'); $dom->preserveWhiteSpace = false; $dom->formatOutput = true; $dl = @$dom->load($xmlFile); // remove error control operator (@) to print any error message generated while loading. if ( !$dl ) die('Error while parsing the document: ' . $xmlFile); echo $dom->save($xmlFile); } ?>