So i have this XML structure:
<fields>
<field name="agent_description" label="Agent Description" size="area" />
<field name="agent_phone" label="Agent Phone" size="field" />
<field name="agent_email" label="Agent EMail" size="field" />
<field name="agent_listing_url" label="Agent Listing" size="field" />
<field name="profile_video_title" label="Profile Video Title" size="field" />
<field name="profile_video_sub_title" label="Profile Video Sub Title" size="field" />
<field name="profile_video_url" label="Profile Video (YouTube)" size="field" />
</fields>
i would like to parse this into an array structure that looks like this:
array(
array("name" => "agent_description",
"label" => "Agent Description",
"size" => "area"),
array("name" => "agent_phone",
"label" => "Agent Phone",
"size" => "field"),
array("name" => "agent_email",
"label" => "Agent EMail",
"size" => "field"),
array("name" => "agent_listing_url",
"label" => "Agent Listing",
"size" => "field"),
array("name" => "profile_video_title",
"label" => "Profile Video Title",
"size" => "field"),
array("name" => "profile_video_sub_title",
"label" => "Profile Video Sub Title",
"size" => "field"),
array("name" => "profile_video_url",
"label" => "Profile Video (YouTube)",
"size" => "field"),
)
whats the best way to accomplish this?