从这个xml服务接收日期需要做什么: http://www.OpenLigaDB.de/Webservices/Sportsdata.asmx?WSDL?
有没有人知道如何从xml webservice获取数据的好教程?
谢谢!
答案 0 :(得分:0)
做这样的事情:
function xml() {
// import XML class
App::import('Xml');
// your XML file's location or however you want to get it
$file = "my_xml_file.xml";
// now parse it
$parsed_xml =& new XML($file);
$parsed_xml = Set::reverse($parsed_xml);
// see the returned array
debug($parsed_xml);
}
然后通过多维数组访问它。瞧!