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


88

我正在尝试使用PHP的SimpleXML将一些数据添加到现有XML文件中。问题在于它将所有数据添加到一行中:

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

等等。全部在一行中。如何引入换行符?

我该怎么做?

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

我正在使用asXML()功能。

谢谢。


还有PEAR XML_Beautifier包。
karim79

Answers:


147

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

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

谢谢。简单高效。
Andrei Duma 2013年

3
所以用SimpleXML不可能吗?
乔纳森

@ xcy7e不,我不这么认为。
Gumbo 2014年

1
当我尝试格式化要追加到文件中的内容时,仅当我在加载现有内容之前指定了preserveWhiteSpace和formatOutput时,此方法才起作用。
2015年

30

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');

19

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

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

不起作用。该函数返回一个DOMElement,而不是DOMDocument
karka91

似乎documentElement应该是ownerDocument。不确定api是否已更改,或者这仅仅是拼写错误。我已经改正了。
troelskn

3
请注意,这仍然不起作用,因为应该导入文档之前设置keepWhiteSpace和formatOutput 以使其生效:)
karka91

有趣-对。看来Gumbo的答案会起作用。
troelskn

2

正如GumboWitman回答的那样;使用DOMDocument :: loadDOMDocument :: 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);
}
?>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.