SimpleXML PHP herhangi bir çocuğun önce AddChild

0 Cevap php

I know how to add child nodes with SimpleXml and PHP but i have a problem with the orders of those child elements. Lets say i have this xml structure

album gallery1 gallery2 gallery2 . . . galleryN / Albüm

Bu benim temel kodu ile oğul eklediğinizde şu anda nasıl

$galleryElement = $sxe->addChild("gallery"); 

Ben bu durumda alt öğelerinin sırası ters i Albümünün ilk çocuk olmak katacak son galeri olmak istiyorum.

Örnek:

album gallery3 gallery2 gallery1

/ Albüm

Herhangi bir burada bazı hile bilir

0 Cevap