I'm very new to XML logic and fairly new to php so I'm not sure if I am using the correct words...
I'm trying to parse an xml file into a WP ready format using an old decoding plugin I have. Unfortunately the author is no longer available for help so any direction you could offer would be greatly appreciated. :)
My issue: I am having trouble trying to parse attributes of 1st tier children.
This script
foreach( $specifications['Fuel Storage'] as $key => $value ) {
$_dappcf_is_fuel[$key] = $value;
}
properly parses this data
<specifications>
<category name="Fuel Storage">
<tank_1_capacity>17.1</tank_1_capacity>
<tank_2_capacity></tank_2_capacity>
</category>
</specifications>
What I need help with: I need to extract the mpg_city and mpg_hwy low and high attributes.
<fuel_efficiency_ratings>
<mpg_city low="20" high="20" trans_type="AT" />
<mpg_hwy low="28" high="28" trans_type="AT" />
</fuel_efficiency_ratings>
What script should I use to extract the data properly?
P.S. Given how many posts there are of stackoverflow I'm sure this question has already been asked, but I don't even know where to begin looking. :/
Thanks!
Edit: Putting the two primary files, the xml decoder and the complete file for my code above in a Gist for clarification.
old decoding plugin, how can we ever provide an answer? Built-ins in PHP are among otherssimplexml&DOMDocument, but you probably don't use those at the moment.... – Wrikken Jun 2 '11 at 19:26esc_attr&array_merge_specialare unknown functions. However, I'm loath to look through swaths of code to debug your situation. You seem to be usingSimpleXMLunder the hood, so try to use that instead of your functions:var_dump($some_xml_object->fuel_efficiency_ratings->mpg_city->attributes();– Wrikken Jun 9 '11 at 20:38