PHP XML如何输出漂亮的格式

这里是代码:

$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,这是怎么一回事?

你可以尝试这样做:

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

您也可以在创buildDOMDocument后立即设置这些参数:

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

这可能更简洁。 在这两种情况下输出( 演示 ):

 <?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更改缩进字符。 你可以用一行一行的正则expression式replace(例如用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]); 

用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指定的新文件

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

两个不同的问题:

  • 将formatOutput和preserveWhiteSpace属性设置为TRUE以生成格式化的XML:

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


另见xmlEncoding和编码 。

这是上述主题的一个细微变化,但是我把这个放在这里,以防其他人碰到这个,不能理解它,就像我做的那样。

使用saveXML()时,目标DOMdocument中的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。

 // ##### 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