0

我正在使用 xml。阅读 xml 文档工作正常,添加节点工作正常,但我希望节点添加到 xml 文件的顶部。这是可能的还是这是一个nogo?

我想要这个的原因是因为当我显示 xml 文件时,我想要最后添加的节点,显示为最新的节点,在顶部。

我用这个循环显示 xml:

foreach($xml->xpath("//user[@id='12345678']") as $user){
        foreach($user->children() as $action => $data){
          echo"<li>";   
          echo $data->content;
          echo $data->date;
           echo"</li>"; 
        }
   }

如果有一种方法可以反转循环或另一种我可以接受的方法,则不必在顶部添加第一个节点。下面是我如何添加节点的文件和 xml 文件的结构。

有谁知道如何解决这个问题?

添加xml.php

<?php
$file = "actielijst.xml";
$fp = fopen($file, "rb") or die("cannot open file");
$str = fread($fp, filesize($file));

$xml = new DOMDocument();
$xml->formatOutput = true;
$xml->preserveWhiteSpace = false;
$xml->loadXML($str) or die("Error");

// get document element
echo "<xmp>OLD:\n". $xml->saveXML() ."</xmp>";

$root   = $xml->documentElement;

$content     = $xml->createElement("content");
$contentText = $xml->createTextNode("Nieuwe Factuur Mei");
$content->appendChild($contentText);

$date     = $xml->createElement("date");
$dateText = $xml->createTextNode("23-12-2010");
$date->appendChild($dateText);

$action   = $xml->createElement("action");
$action->appendChild($date);
$action->appendChild($content);

$root->appendChild($action);

$xml->save("actielijst.xml") or die("Error");

?>

actielijst.xml

<?xml version="1.0"?>
   <userid>
      ------->  Insert new action here <------
      <action>
         <date>23-01-2010</date>
         <content>nieuwe factuur</content>
      </action>
      <action>
         <date>23-01-2010</date>
         <content>karten op 01-02</content>
      </action>
    </userid>
4

2 回答 2

1

您可以使用 xpath 捕获每个父节点(在您的情况下为操作),然后反转数组...

$users_arr = array_reverse($xml->xpath("action"));

现在你可以遍历这个数组了!

于 2013-05-16T08:49:49.630 回答
0

这将有助于

<?php

$file = "actielijst.xml";

$fp = fopen($file, "rb") or die("cannot open file");

$str = fread($fp, filesize($file));

$xml  = simplexml_load_string($str);

$action = $xml->addChild('action');

$action->addChild('content','sundar');

$action->addChild('date','23-12-2010');

header('content-type: application/xml');

echo $xml->saveXML();
于 2013-05-16T09:02:12.570 回答