Xtreme Toolkit Pro PHP transforms XML into an array

Source: Internet
Author: User
Copy the Code code as follows:


XML-to-array, including the root key
function Xml_to_array ($xml)
{
$reg = "/< (\w+) [^>]*> ([\\x00-\\xff]*) <\\/\\1>/";
if (Preg_match_all ($reg, $xml, $matches))
{
$count = count ($matches [0]);
for ($i = 0; $i < $count; $i + +)
{
$subxml = $matches [2][$i];
$key = $matches [1][$i];
if (Preg_match ($reg, $subxml))
{
$arr [$key] = Xml_to_array ($subxml);
}else{
$arr [$key] = $subxml;
}
}
}
return $arr;
}
Xml to array, not including root key
function Xmltoarray ($xml)
{
$arr = Xml_to_array ($xml);
$key = Array_keys ($arr);
return $arr [$key [0]];
}

The above describes the Xtreme Toolkit Pro PHP to convert the XML into an array, including the Xtreme Toolkit Pro content, I hope the PHP tutorial interested in a friend helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.