最简单的XML转数组

/**
 * 最简单的XML转数组
 * @param string $xmlstring XML字符串
 * @return array XML数组
 */
function simplest_xml_to_array($xmlstring) {
    return json_decode(json_encode(simplexml_load_string($xmlstring), true));
}



分开写法

   $result = file_get_contents($url);
   $result = simplexml_load_string($result);
   $result=json_decode(json_encode($result),true);
原文地址:https://www.cnblogs.com/hnbiao/p/5623769.html