SOAP的新手。试图从NOAA网站获取天气数据。下面显示的第一个SOAP请求有效,并返回纬度和经度。第二个SOAP请求不起作用。我显然没有正确发送数据。有人可以帮忙吗?谢谢
<?php
$wsdl = "http://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl";
$client = new SoapClient($wsdl,array("trace"=>1,"exceptions"=>0));
$rs = $client->LatLonListZipCode(98011);
echo('<pre>'.print_r($rs,1).'</pre>');
$par=array('latitude'=>39.0000,'longitude'=>-77.0000,'product'=>'time-series','startTime'=>'2004-04-27T12:00','endTime'=>'2004-04-30T12:00','Unit'=>'e','weatherParameters'=>'maxt = TRUE');
$rs = $client->NDFDgen($par);
echo('<pre>'.print_r($rs,1).'</pre>');
?>
答案 0 :(得分:0)
weatherParameters
应该是一个关联数组。