我正在尝试使用PHP的SimpleXML将一些数据添加到现有XML文件中。问题在于它将所有数据添加到一行中:
<name>blah</name><class>blah</class><area>blah</area> ...
等等。全部在一行中。如何引入换行符?
我该怎么做?
<name>blah</name>
<class>blah</class>
<area>blah</area>
我正在使用asXML()
功能。
谢谢。
Answers:
您可以使用DOMDocument类重新格式化代码:
$dom = new DOMDocument('1.0');
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->loadXML($simpleXml->asXML());
echo $dom->saveXML();
Gumbo的解决方案可以解决问题。您可以使用上面的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();
documentElement
应该是ownerDocument
。不确定api是否已更改,或者这仅仅是拼写错误。我已经改正了。
正如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);
}
?>