将得到的xml格式的数据转化成数组
1 <?php 2 //构造xml 3 $url = "http://api.map.baidu.com/telematics/v3/weather?location=太原&output=xml&ak=6b219a615eb77699a10eb54054959a2e"; 4 // $xmldata = file_get_contents($url); //将请求到的文件内容读入到一个字符串中 5 $xmlResult = simplexml_load_file($url); 6 $json_xml=json_encode($xmlResult); 7 $dejson_xml=json_decode($json_xml,true); 8 echo '<pre/ >'; 9 print_r($dejson_xml); 10 die; 11 12 ?>