我正在努力开发一个电子商务网站。 为了管理多种货币,我想使用webservice进行自动转换。 所以我尝试了这个网络服务:http://www.webservicex.com/CurrencyConvertor.asmx?WSDL,代码如下:
try
{
$wsdl="http://www.webservicex.com/CurrencyConvertor.asmx?WSDL";
$webservice = new \SoapClient( $wsdl );
$country=array();
// Set the country variable to the country codes.
$country['FromCurrency']= 'USD';
$country['ToCurrency'] = 'EUR';
$webservice->ConversionRate($country);
echo $response->ConversionRateResult;*/
}catch(Exception $oException)
{
printf(
'<h4 style="color: Red">Exception</h4>
<p>%s</p>',
$oException->getMessage()
);
} `
不幸的是,该服务让我回归 - 1 我的代码是否存在问题,或者该服务不再有效!!
你知道另一个稳定的网络服务吗? 非常感谢你