1

新しいノードを追加して既存の XML ファイルを更新する PHP スクリプトを作成しました。問題は、新しいノードがフォーマットされていないことです。それらは一行で書かれています。これが私のコードです:

$file = fopen('data.csv','r');
$xml = new DOMDocument('1.0', 'utf-8');
$xml->formatOutput = true;

$doc = new DOMDocument();
$doc->loadXML(file_get_contents('data.xml'));
$xpath = new DOMXPath($doc);
$root = $xpath->query('/my/node');
$root = $root->item(0);
$root = $xml->importNode($root,true);

// all the tags created in this loop are not formatted, and written in a single line
while($line=fgetcsv($file,1000,';')){
    $tag = $xml->createElement('cart');
    $tag->setAttribute('attr1',$line[0]);
    $tag->setAttribute('attr2',$line[1]);
    $root->appendChild($tag);
}
$xml->appendChild($root);
$xml->save('updated.xml');

どうすればこれを解決できますか?

4

1 に答える 1