I try to convert a simple xml file to an array but the conversion do not keep the "id" attributes as the key array. XML source:
<mapi>
<categoriesList>
<category id="310">Autres</category>
<category id="574">Bière</category>
<category id="495">Biscuits</category>
<category id="444">Bonbons</category>
<category id="435">Champagne</category>
<category id="371">Cidre</category>
<category id="215">Condiments</category>
<category id="8">Fruits</category>
<category id="445">Poissons</category>
<category id="578">Produits laitiers</category>
<category id="539">Spiritueux</category>
<category id="259">Viandes</category>
<category id="126">Vin</category>
</categoriesList>
</mapi>
Id like a simple array like this:
array (
[310] => Autres
[574] => Bière
[495] => Biscuits
[444] => Bonbons
[435] => Champagne
[371] => Cidre
[215] => Condiments
[8] => Fruits
[445] => Poissons
[578] => Produits laitiers
[539] => Spiritueux
[259] => Viandes
[126] => Vin
)
Thank your for your help Dimitri