PHP XML如何输出漂亮的格式


72

以下是代码:

$doc = new DomDocument('1.0');
// create root node
$root = $doc->createElement('root');
$root = $doc->appendChild($root);
$signed_values = array('a' => 'eee', 'b' => 'sd', 'c' => 'df');
// process one row at a time
foreach ($signed_values as $key => $val) {
    // add node for each row
    $occ = $doc->createElement('error');
    $occ = $root->appendChild($occ);
    // add a child node for each field
    foreach ($signed_values as $fieldname => $fieldvalue) {
        $child = $doc->createElement($fieldname);
        $child = $occ->appendChild($child);
        $value = $doc->createTextNode($fieldvalue);
        $value = $child->appendChild($value);
    }
}
// get completed xml document
$xml_string = $doc->saveXML() ;
echo $xml_string;

如果我在浏览器中打印它,我不会得到很好的XML结构,例如

<xml> \n tab <child> etc.

我刚得到

<xml><child>ee</child></xml>

我想成为utf-8这怎么可能?


关于您的utf-8问题,只需将其作为第二个参数添加到对象中,例如$doc = new DOMDocument("1.0", "UTF-8");
Thielicious

Answers:


110

您可以尝试这样做:

...
// get completed xml document
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$xml_string = $doc->saveXML();
echo $xml_string;

您还可以在创建之后立即设置这些参数DOMDocument

$doc = new DomDocument('1.0');
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;

这可能更简洁。两种情况下的输出均为(Demo):

<?xml version="1.0"?>
<root>
  <error>
    <a>eee</a>
    <b>sd</b>
    <c>df</c>
  </error>
  <error>
    <a>eee</a>
    <b>sd</b>
    <c>df</c>
  </error>
  <error>
    <a>eee</a>
    <b>sd</b>
    <c>df</c>
  </error>
</root>

我不知道如何使用来更改缩进字符DOMDocument。您可以使用逐行正则表达式替换(例如,使用preg_replace)对XML进行后处理:

$xml_string = preg_replace('/(?:^|\G)  /um', "\t", $xml_string);

另外,还有一个整洁的扩展程序tidy_repair_string,可以很好地打印XML数据。可以使用它指定缩进级别,但是整洁绝不会输出制表符。

tidy_repair_string($xml_string, ['input-xml'=> 1, 'indent' => 1, 'wrap' => 0]);

相关:在PHP中调试DOMDocument对象以获得更受控的XML打印形式。
hakre 2012年


我发现,“在创建DOMDocument之后也可以立即设置这些参数”不是一个好主意,如果您saveXML在与另一个文档进行处理/比较时使用它,因为它可能导致意外的结果。最好在需要输出之前立即格式化输出。
杰夫·普基特

35

使用SimpleXml对象,您可以简单地

$domxml = new DOMDocument('1.0');
$domxml->preserveWhiteSpace = false;
$domxml->formatOutput = true;
/* @var $xml SimpleXMLElement */
$domxml->loadXML($xml->asXML());
$domxml->save($newfile);

$xml 是您的simplexml对象

因此,您可以将simpleXml保存为以下文件指定的新文件 $newfile


@quickshiftin-输入数据是的实例SimpleXMLElement。我将编辑答案以使其更明显。无论如何,我同意您提供的食物DOMDocument实际上是无关紧要的。
阿尔瓦罗冈萨雷斯

另外,您可以在loadXMLbefore之后使用`$ domxml-> encoding =“ UTF-8”` save
user1742529 '18

19
<?php

$xml = $argv[1];

$dom = new DOMDocument();

// Initial block (must before load xml string)
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
// End initial block

$dom->loadXML($xml);
$out = $dom->saveXML();

print_R($out);

1
您还能补充说明吗?
罗伯特

5
// ##### IN SUMMARY #####

$xmlFilepath = 'test.xml';
echoFormattedXML($xmlFilepath);

/*
 * echo xml in source format
 */
function echoFormattedXML($xmlFilepath) {
    header('Content-Type: text/xml'); // to show source, not execute the xml
    echo formatXML($xmlFilepath); // format the xml to make it readable
} // echoFormattedXML

/*
 * format xml so it can be easily read but will use more disk space
 */
function formatXML($xmlFilepath) {
    $loadxml = simplexml_load_file($xmlFilepath);

    $dom = new DOMDocument('1.0');
    $dom->preserveWhiteSpace = false;
    $dom->formatOutput = true;
    $dom->loadXML($loadxml->asXML());
    $formatxml = new SimpleXMLElement($dom->saveXML());
    //$formatxml->saveXML("testF.xml"); // save as file

    return $formatxml->saveXML();
} // formatXML

赞成,因为此答案包含完整的示例!
baris1892

很好的答案,在我的情况下(使用RSS XML),这是唯一可以完全起作用的选项。
凯文·利里

5

尝试了所有答案,但没有一个有效。可能是因为我要在保存XML之前附加和删除子级。经过大量谷歌搜索后,在php文档中找到了此注释。我只需要重新加载生成的XML即可使其工作。

$outXML = $xml->saveXML(); 
$xml = new DOMDocument(); 
$xml->preserveWhiteSpace = false; 
$xml->formatOutput = true; 
$xml->loadXML($outXML); 
$outXML = $xml->saveXML(); 

4

这里有两个不同的问题:

  • 设置formatOutputpreserveWhiteSpace属性TRUE以生成格式化的XML:

    $doc->formatOutput = TRUE;
    $doc->preserveWhiteSpace = TRUE;
    
  • 许多Web浏览器(即Internet Explorer和Firefox)在显示XML时会格式化XML。使用查看源功能或常规文本编辑器检查输出。


另请参见xmlEncodingencoding


1
preserveWhiteSpace = TRUE使用DOMDocumentFYI进行漂亮的打印时,您可能会遇到麻烦-仅使用FYI,而不是所讨论的示例,但是如果从实际具有空白textnode的现有文件加载,则可以。
hakre 2011年

@hakre为什么preserveWhiteSpace = TRUE在XML上能正常工作,但在HTML上却不能工作?

要让浏览器对其进行格式化,必须设置适当的MIME类型。例如,whit:header('Content-type:text / xml');

我实际上渴望看到空白,所以这对我来说是正确的答案
gog

1

这是上述主题的一个细微变化,但我想将其放置在这里,以防其他人碰到这个主题而无法理解它...就像我一样。

使用saveXML()时,目标DOM文档中的preserveWhiteSpace不适用于导入的节点(从PHP 5.6开始)。

考虑以下代码:

$dom = new DOMDocument();                               //create a document
$dom->preserveWhiteSpace = false;                       //disable whitespace preservation
$dom->formatOutput = true;                              //pretty print output
$documentElement = $dom->createElement("Entry");        //create a node
$dom->appendChild ($documentElement);                   //append it 
$message = new DOMDocument();                           //create another document
$message->loadXML($messageXMLtext);                     //populate the new document from XML text
$node=$dom->importNode($message->documentElement,true); //import the new document content to a new node in the original document
$documentElement->appendChild($node);                   //append the new node to the document Element
$dom->saveXML($dom->documentElement);                   //print the original document

在这种情况下,该$dom->saveXML();语句不会很好地打印从$ message导入的内容,但是原来在$ dom中的内容将得到漂亮的打印。

为了实现整个$ dom文档的漂亮打印,该行:

$message->preserveWhiteSpace = false; 

必须在该$message = new DOMDocument();行之后-即 导入节点的文档还必须具有preserveWhiteSpace = false。

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.