最简单的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);
上一篇:POJ 2039


下一篇:Mybaits-plus实战(三)