加载XML文件->添加项目->重新排序->编写XML文件[PHP&SimpleXML]

时间:2018-09-03 15:48:47

标签: php simplexml

摘要

  1. 加载现有的XML文件
  2. 为每个孩子添加2个项目
  3. 更改孩子的顺序
  4. 编写新的XML文件

详细说明

这是Source-XML-File的简化示例

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<warehouse>
  <inventory>
    <name>Name 1</name>
    <markers>
     <marker>red</marker>
     <marker>yellow</marker>
     <marker>green</marker>
   </markers>
   (...)
  </inventory>
  <inventory>
    <name>Name 2</name>
    <markers>
     <marker>blue</marker>
     <marker>pink</marker>
     <marker>brown</marker>
   </markers>
   (...)
  </inventory>
  <inventory>
    <name>Name 3</name>
    <markers>
     <marker>black</marker>
     <marker>white</marker>
     <marker>marron</marker>
   </markers>
   (...)
  </inventory>
</warehouse>

1。加载现有的XML文件

将XML文件加载到变量中。

$source_xmlfile = "source.xml";
$source_xml_file_contents = simplexml_load_file($source_xmlfile);

2。向每个孩子添加2个项目

在第一个清单中将2个子项添加名称和值。

$source_xml_file_contents->warehouse->inventory[0]->addChild("new1", "0.12345");
$source_xml_file_contents->warehouse->inventory[0]->addChild("new2", "17");

3。更改孩子的顺序

这是我无法尝试的部分。

我的想法如下:

$destination_xml_file_contents = new SimpleXMLElement('<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?><warehouse></warehouse>');
foreach($source_xml_file_contents->warehouse->inventory as $inventory){
  $destination_xml_file_contents->warehouse->addChild("inventory", $inventory);
}

基本思想是,我将一个孩子()从中取出,并存储在一个变量中,或者存储在一个包含包含的所有内容(包括属性和子节点等)。 将所有存储在其他位置后,我将获取一个新的XML,然后以新的顺序将存储的放入新的XML中。

但是,似乎不可能将整个子级保存到变量(或数组)中,以后再将其添加到另一个XML中。

由于顺序不一定是简单的,所以在这里对我没有帮助,而且由于我无法进行排序,所以我很茫然。

4。编写新的XML文件

将新的XML内容保存到新的XML文件中。

$new_xml_file = "destination.xml";
$destination_xml_file_contents->asXML($new_xml_file);

这是目标XML文件的简化示例

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<warehouse>
  <inventory>
    <name>Name 2</name>
    <markers>
     <marker>blue</marker>
     <marker>pink</marker>
     </marker>brown</marker>
   </markers>
   (...)
   <new1>0.6789</new1>
   <new2>115</new2>
  </inventory>
  <inventory>
    <name>Name 1</name>
    <markers>
     <marker>red</marker>
     <marker>yellow</marker>
     </marker>green</marker>
   </markers>
   (...)
   <new1>0.4567</new1>
   <new2>4</new2>
  </inventory>
  <inventory>
    <name>Name 3</name>
    <markers>
     <marker>black</marker>
     <marker>white</marker>
     </marker>marron</marker>
   </markers>
   (...)
   <new1>0.1234</new1>
   <new2>17</new2>
  </inventory>
</warehouse>

有人可以帮我弄清楚如何进行这项工作吗?

现在我要解析整个XML文件,并用字符串逐行重写它,因为SimpleXML似乎不起作用。

1 个答案:

答案 0 :(得分:0)

我不确定有几件事,但是希望这段代码将显示使用DOMDocument将节点从一个文档复制到另一个文档(并添加内容)的原理。我已经在代码中添加了注释以帮助您,如果您不确定有什么疑问,请告诉我。

new

输出几乎只是带有额外数据的输入文档的副本。您可以在第二个delete循环中添加一些逻辑,以其他格式对输出元素进行排序,但我不确定这是什么。

还请注意,您的文档中存在一个XML缺陷...

$inFile = "data.xml";
$input = new DOMDocument();
$input->load($inFile);

$all_inventory = $input->getElementsByTagName("inventory");
// Add new content to each item
foreach ( $all_inventory as $inventory )    {
    $inventory->appendChild ( $input->createElement("new1", "0.12345"));
    $inventory->appendChild ( $input->createElement("new2", "17"));
}

$outFile = "out.xml";
$output = new DOMDocument();
// Create base document for destination
$output->loadXML('<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?><warehouse />');
// Get the root element as we will be adding content to this
$outputRoot = $output->documentElement;
foreach ( $all_inventory as $inventory )    {
    // Copy the element from the input document to the output document
    // Note this does not add it anywhere, just makes it available
    // The true option says make a deep copy
    $import = $output->importNode($inventory, true);
    // Add the newly imported node to the output document root
    $outputRoot->appendChild($import);
}
$output->save($outFile);