在php中组合XML文件

时间:2018-02-21 11:49:04

标签: php xml merge xml-parsing

我正在获取外部xml文件(通过文件交换),我能够读取并存储在数据库中(php / mysql)。 xml文件以不同的名称压缩,有时几个文件压缩在一个文件夹中

当文件夹只有1个xml文件时,我能够使用

成功解压缩并阅读内容
 $path = '/xmlFile'; 
   //the xmlFile names are in this format : xmFile-00001235.xml, 
   //xmlFile-000012390.xml, etc.   only first portions are consistent

   foreach (glob($path.'/xmlFile-*.xml') as $filename) 

  {
  $xml=file_get_contents($filename);    

   }
   //store in database and unlink the xml file

仅当文件夹有一个xml文件时才有效,因为我在存储后取消链接xml文件,它取消链接所有文件但只存储一个

什么是最好的方法;我正在考虑检查文件夹是否超过1 xml并组合xml文件?也许一个示例解决方案真的会有所帮助,

示例xml如下

xml1.xml

<sales>
    <row id="000001" saleid="267158" amountSold="2000"  />
    <row id="000001" saleid="267159" amountSold="80.000" />
 </sales>

xml2.xml

  <sales>
    <row id="000001" saleid="267160" amountSold="4000"  />
    <row id="000001" saleid="267161" amountSold="580" />
   </sales>

2 个答案:

答案 0 :(得分:1)

基于以下答案:Merge XML files in PHP

$doc1 = new DOMDocument();
$doc1->load('1.xml');

$doc2 = new DOMDocument();
$doc2->load('2.xml');

// get 'res' element of document 1
$res1 = $doc1->getElementsByTagName('items')->item(0); //edited res - items

// iterate over 'item' elements of document 2
$items2 = $doc2->getElementsByTagName('item');
for ($i = 0; $i < $items2->length; $i ++) {
    $item2 = $items2->item($i);

    // import/copy item from document 2 to document 1
    $item1 = $doc1->importNode($item2, true);

    // append imported item to document 1 'res' element
    $res1->appendChild($item1);

}

答案 1 :(得分:1)

合并几个文件可以做类似......

function mergeFile ( DOMDocument $target, $fileName )    {
    $source = new DOMDocument();
    $source->load($fileName);

    foreach ( $source->getElementsByTagName("row") as $row )   {
        $import = $target->importNode($row, true);
        $target->documentElement->appendChild($import);
    }
}

$target = new DOMDocument();
$target->loadXML('<?xml version="1.0" encoding="utf-8"?><sales></sales>');
mergeFile($target, "NewFile.xml");
mergeFile($target, "NewFile1.xml");
mergeFile($target, "NewFile2.xml");

$target->save("out2.xml");

这允许您继续将所有文件一起添加,然后在最后保存它们。