我有以下代码(如下)并使用iGoogle版本。
$url = 'http://www.google.com/ig/calculator?hl=en&q=' . $amount . $from_Currency . '=?' . $to_Currency;
$ch = curl_init();
$timeout = 0;
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT , "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$rawdata = curl_exec($ch);
curl_close($ch);
$data = explode('"', $rawdata);
$data = explode(' ', $data[3]);
$var = $data[0];
但看了他们正在使用不同的网址:
'http://www.google.com/finance/converter?hl=en&a=' . $amount . '&from=' . $from_Currency . '&to=USD';
但只是更改网址并不会返回我习惯的所需结果。
现在我得到的只是
http://www.w3.org/TR/html4/strict.dtd
所以有人在处理这个最新的货币转换器URL或有任何想法。或者使用PHP替换
答案 0 :(得分:14)
感谢一些更深入的查找和重写问题发现这篇文章。所以在某种程度上它是重复的。但问题是:
Need API for currency converting
我使用了@hobailey的答案进行临时修复,直到我可以将其更新到另一个版本或谷歌决定做一个正确的API。
$amount = urlencode($amount);
$from_Currency = urlencode($from_Currency);
$to_Currency = urlencode($to_Currency);
$get = file_get_contents("https://www.google.com/finance/converter?a=$amount&from=$from_Currency&to=$to_Currency");
$get = explode("<span class=bld>",$get);
$get = explode("</span>",$get[1]);
$converted_amount = preg_replace("/[^0-9\.]/", null, $get[0]);
答案 1 :(得分:4)
使用XPath:
function currency($from, $to, $amount)
{
$content = file_get_contents('https://www.google.com/finance/converter?a='.$amount.'&from='.$from.'&to='.$to);
$doc = new DOMDocument;
@$doc->loadHTML($content);
$xpath = new DOMXpath($doc);
$result = $xpath->query('//*[@id="currency_converter_result"]/span')->item(0)->nodeValue;
return str_replace(' '.$to, '', $result);
}
echo currency('USD', 'EUR', 1); // returns 0.7216
答案 2 :(得分:2)
我创建了一个以更简单的方式连接到Google的课程here。
我希望它能使一些方面变得更容易!
修改:我刚才知道Google服务已于2013年11月关闭。
我将不得不改变它!
再次编辑:我已将Google Api更改为Yahoo Api,但效果非常好!
答案 3 :(得分:1)
我找到了另一个解决方案。如果您的服务器IP无法使用谷歌服务,它也会工作。
<?php
$from_currency = 'USD';
$to_currency = 'INR';
$amount = 1;
$results = converCurrency($from_currency,$to_currency,$amount);
$regularExpression = '#\<span class=bld\>(.+?)\<\/span\>#s';
preg_match($regularExpression, $results, $finalData);
echo $finalData[0];
function converCurrency($from,$to,$amount){
$url = "http://www.google.com/finance/converter?a=$amount&from=$from&to=$to";
$request = curl_init();
$timeOut = 0;
curl_setopt ($request, CURLOPT_URL, $url);
curl_setopt ($request, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($request, CURLOPT_USERAGENT,"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
curl_setopt ($request, CURLOPT_CONNECTTIMEOUT, $timeOut);
$response = curl_exec($request);
curl_close($request);
return $response;
}
?>
来源参考Step Blogging