function xml_to_arr($xml){//xml字符串转数组 $objectxml = simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA);//将文件转换成 对象 $xmljson= json_encode($objectxml );//将对象转换个JSON $xmlarray=json_decode($xmljson,true);//将json转换成数组 return $xmlarray; }
function xml_to_arr($xml){//xml字符串转数组 $objectxml = simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA);//将文件转换成 对象 $xmljson= json_encode($objectxml );//将对象转换个JSON $xmlarray=json_decode($xmljson,true);//将json转换成数组 return $xmlarray; }