<?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(); ?>
