我使用
PHP的简单XML创建了一个XML文件,保存了该文件.使用fopen在PHP中打开文件并打印内容时.我的XML看起来像这样:(见下文)
<?xml version="1.0" encoding="UTF-8"?> <home><orderList><delivery_cost>0.00</delivery_cost><delivery_surname>TEST</delivery_surname><delivery_postcode>1234</delivery_postcode><status>1</status></orderList></home>
我希望xml文件看起来全部缩进,并在每个元素的新行上查找.有人知道怎么做这个吗?
谢谢
您可以使用
原文链接:https://www.f2er.com/php/130671.htmlDOMDocument
的
formatOutput
属性执行此操作.
相反,保存您的XML,假设您的XML位于名为$yourXML的变量中,并且您希望将其保存到$xmlFilePath的文件中:
$dom = new DOMDocument(); $dom->loadXML($yourXML); $dom->formatOutput = true; $formattedXML = $dom->saveXML(); $fp = fopen($xmlFilePath,'w+'); fwrite($fp,$formattedXML); fclose($fp);