<?php header('Content-Type:text/html; charset=utf-8'); //1.获取xml数据 $xmldata=file_get_contents("http://api网址"); //2.把xml转换为simplexml对象 //$xmlstring=simplexml_load_string($xmldata); $xmlstring = simplexml_load_string($xmldata, 'SimpleXMLElement', LIBXML_NOCDATA); //3.把simplexml对象转换成 json,再将 json 转换成数组。 $value_array = json_decode(json_encode($xmlstring),true); //print_r($value_array); //die(); $result =$value_array['row']; //期号 $expect = $result['@attributes']['expect']; //号码 $opencode = $result['@attributes']['opencode']; //时间 $opentime = $result['@attributes']['opentime']; //print_r($expect."-".$opencode."-".$opentime); //die(); ?>