Jump to content

Inserting a XML node at a specific location


leon_nerd

Recommended Posts

Hi Guys,

 

I want to insert a node with children at a specific location in the XML file. How do I do it?

 

For eg. If I have an XML like:

 

<myvalues>
     <image name="img01">
        <src>test</src>
     </image>

     <image name="img02">
        <src>test</src>
     </image>

     <image name="img03">
        <src>test</src>
     </image>
</myvalues>

 

I want to insert:

       

<image name="img11">
     <src>test</src>
  </image>

 

between <image name="img01"> & <image name="img02">. How do I do this? I am using SimpleXML right now to read the XML.

 

Thanks.

Link to comment
Share on other sites

Thanks. I tried this code but it is inserting the new node at the end of the XML file, outside the XML structure.

 

I am using the following code:

 

$xml = new DomDocument();


$xml->preserveWhitespace = false;
$xml->load('myXMLFile.xml');

$newNode = $xml->createElement('tryimage');

$xpath = new DOMXpath($xml);
$elements = $xpath->query('/myvalues/image[name="img01"]');

$refNode = $elements->item(0);

$xml->insertBefore($newNode, $refNode->nextSibling);


header('Content-Type: text/plain');
echo $xml->saveXML();

 

and the output is:

 

<xml....>
   <myvalues>
     <image name="01">
     </image>
     .
     .
     .
   </myvalues>
<tryimage />

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.