PHP SimpleXML: belirli bir konumda düğüm eklemek

0 Cevap php

Ben XML vardır söylüyorlar:

<root>
  <nodeA />
  <nodeA />
  <nodeA />
  <nodeC />
  <nodeC />
  <nodeC />
</root>

Nasıl As ve Cs arasında "NodeB" ekleyebilirim? PHP, tercihen SimpleXML üzerinden? Gibi:

<root>
  <nodeA />
  <nodeA />
  <nodeA />
  <nodeB />
  <nodeC />
  <nodeC />
  <nodeC />
</root>

0 Cevap