格式输出$ SimpleXML-> asXML();

时间:2009-07-27 23:18:34

标签: php xml formatting simplexml

标题几乎说明了一切。

如果我有类似的东西(来自PHP网站示例):

$xmlstr = <<<XML
<?xml version='1.0' standalone='yes'?>
<movies></movies>
XML;

$sxe = new SimpleXMLElement($xmlstr);

$sxe->addAttribute('type', 'documentary');

$movie = $sxe->addChild('movie');
$movie->addChild('title', 'PHP2: More Parser Stories');
$movie->addChild('plot', 'This is all about the people who make it work.');

$characters = $movie->addChild('characters');
$character  = $characters->addChild('character');
$character->addChild('name', 'Mr. Parser');
$character->addChild('actor', 'John Doe');

$rating = $movie->addChild('rating', '5');
$rating->addAttribute('type', 'stars');


echo("<pre>".htmlspecialchars($sxe->asXML())."</pre>");

die();

我最终输出一个长字符串,如下所示:

<?xml version="1.0" standalone="yes"?>
<movies type="documentary"><movie><title>PHP2: More Parser Stories</title><plot>This is all about the people who make it work.</plot><characters><character><name>Mr. Parser</name><actor>John Doe</actor></character></characters><rating type="stars">5</rating></movie></movies>

这对于程序使用者来说很好,但是对于调试/人工任务,是否有人知道如何将其转换为漂亮的缩进格式?

3 个答案:

答案 0 :(得分:72)

PHP manual page for SimpleXMLElement的评论中有各种各样的解决方案。效率不高,但肯定是简洁的,是Anonymous的解决方案

$dom = dom_import_simplexml($simpleXml)->ownerDocument;
$dom->formatOutput = true;
echo $dom->saveXML();

PHP手册页注释通常是满足常见需求的良好来源,只要您首先过滤掉明显错误的内容。

答案 1 :(得分:48)

以上对我不起作用,我觉得这很有效:

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

答案 2 :(得分:7)

找到一个类似的解决方案...来格式化原始xlm数据..来自我的php SOAP请求 __getLastRequest & __getLastResponse ,以便快速调试xml&si; google-code-prettify

如果您想格式化敏感的xml数据并且不想在线进行此操作,这是一个很好的解决方案。

下面的一些示例代码可能对其他人有所帮助:

$dom = new DOMDocument;
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->loadXML($data); //=====$data has the raw xml data...you want to format

echo '<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>';

echo "<br/> <pre class=\"prettyprint\" >". htmlentities($dom->saveXML())."</pre>";

下面是我获得的格式化XML输出的示例:

注意:格式化的XML在$dom->saveXML()中可用,可以使用php file write直接保存到xml文件中。

Formatted XML Output