So I have this XML that I'm strolling through and I'm able to move through it fine. What I want to dynamically create is an associative array in this way:
$keyName => $valName
Here's how the XML looks like:
<dict>
<key>Major Version</key><integer>1</integer>
<key>Minor Version</key><integer>1</integer>
<key>Application Version</key><string>7.6.1</string>
<key>Tracks</key>
<dict>
<key>0</key>
<dict>
<key>Track ID</key><integer>0</integer>
<key>Name</key><string>American Idol 2013</string>
<key>Artist</key><string>Amber Holcomb</string>
<key>Album Artist</key><string>Amber Holcomb</string>
<key>Album</key><string>Unknown Album</string>
<key>Kind</key><string>MPEG audio file</string>
<key>Size</key><integer>3645</integer>
<key>Total Time</key><integer>233000</integer>
<key>Date Modified</key><date>Thu Mar 14 12:11:12 2013</date>
<key>Date Added</key><date>Thu Apr 04 16:10:15 2013</date>
<key>Bitrate</key><integer>128</integer>
<key>Location</key><string>file://localhost/Z:%5Canthony%5CMusic%5CiTunes%5CiTunes%20Media%5CMusic%5CUnknown%20Artist%5CUnknown%20Album%5CAmber%20Holcomb%20-%20A%20Moment%20Like%20This%20-%20Studio%20Version%20-%20American%20Idol%202013.mp3</string>
<key>File Folder Count</key><integer>-1</integer>
<key>Library Folder Count</key><integer>-1</integer>
</dict>
and here's what I got for my code so far:
$xml = simplexml_load_file(base_url().'uploads/xmlbackup2.xml');
$varKey = $xml->dict[0]->dict[0]->dict[0]->children();
$keyName ="";
$valName ="";
foreach($xml->dict[0]->dict[0]->dict as $dict1){
foreach($dict1->children() as $dictChild){
if($dictChild->getName() == "key"){
$keyName = $dictChild;
} else {
$valName = $dictChild;
}
}
}
I've tried a few things like creating two arrays and try to merge them...but it just fails for me, most likely I have the code incorrectly done.
Essentially what I'm going to do after the 2nd foreach
loop completes is to drop the data into SQL. However I need to create the associative first to make it work in codeigniter.