我有这个 simplexml 脚本,用于发布从表单输入的数据。
$xml = simplexml_load_file("links.xml");
$sxe = new SimpleXMLElement($xml->asXML());
$person = $sxe->addChild("link");
$person->addChild("title", "Q: ".$x_title);
$person->addChild("url", "questions_layout.php#Question$id");
$sxe->asXML("links.xml");
当它出来时,它在一行上看起来像这样:
<link><title>Alabama State</title><url>questions_layout.php#Question37</url></link><link><title>Michigan State</title><url>questions_layout.php#Question37</url></link></pages>
但我已经尝试过找到 HERE 和 THIS AS WELL 的方法,但都没有在行中正确格式化 XML,因为它们应该像
<link>
<title></title>
<url></url>
</link>
在第一个引用链接中,我什至将
loadXML
更改为 load
,因为 loadXML
需要一个字符串作为 XML。有人可以帮我找到解决方案吗? 最佳答案
AFAIK simpleXML 不能自己做。
但是,DOMDocument 可以。
$dom = dom_import_simplexml($sxe)->ownerDocument;
$dom->formatOutput = TRUE;
$formatted = $dom->saveXML();
关于php - SimpleXML 中的美化/格式化输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10133157/