PHPのSimpleXMLを使用して、既存のXMLファイルにデータを追加しようとしています。問題は、すべてのデータを1行で追加することです。
_<name>blah</name><class>blah</class><area>blah</area> ...
_
等々。すべて1行で。改行を導入する方法は?
このようにするにはどうすればよいですか?
_<name>blah</name>
<class>blah</class>
<area>blah</area>
_
asXML()
関数を使用しています。
ありがとう。
DOMDocument class を使用して、コードを再フォーマットできます。
$dom = new DOMDocument('1.0');
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->loadXML($simpleXml->asXML());
echo $dom->saveXML();
Gumboのソリューションがこのトリックを行います。上記のsimpleXmlを使用して作業を行い、最後にこれを追加して、フォーマットしてエコーおよび/または保存します。
以下のコードはそれをエコーし、ファイルに保存します(コード内のコメントを参照し、不要なものを削除します):
//Format XML to save indented tree rather than one line
$dom = new DOMDocument('1.0');
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->loadXML($simpleXml->asXML());
//Echo XML - remove this and following line if echo not desired
echo $dom->saveXML();
//Save XML to file - remove this and following line if save not desired
$dom->save('fileName.xml');
つかいます - dom_import_simplexml
DomElementに変換します。次に、その容量を使用して出力をフォーマットします。
$dom = dom_import_simplexml($simple_xml)->ownerDocument;
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
echo $dom->saveXML();
Gumbo および Witman が回答済み; DOMDocument :: load および DOMDocument :: save を使用して、既存のファイルからXMLドキュメントを読み込んで保存します(ここでは多くの初心者です)。
<?php
$xmlFile = 'filename.xml';
if( !file_exists($xmlFile) ) die('Missing file: ' . $xmlFile);
else
{
$dom = new DOMDocument('1.0');
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dl = @$dom->load($xmlFile); // remove error control operator (@) to print any error message generated while loading.
if ( !$dl ) die('Error while parsing the document: ' . $xmlFile);
echo $dom->save($xmlFile);
}
?>