1 function xml_to_array($xml){ 2 if(!$xml){ 3 return false; 4 } 5 //将XML转为array 6 //禁止引用外部xml实体 7 libxml_disable_entity_loader(true); 8 $data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); 9 return $data; 10 }