可能重复:
Programmatically access currency exchange rates
是否有提供准确货币折算价值的api?我已经使用谷歌和雅虎api,但他们并没有给出要求的结果越南盾(越南盾)美元。
发布于 2011-11-30 11:37:39
这个怎么样?
<?php
$amount = urlencode("1");
$from_Currency = urlencode("VND");
$to_Currency = urlencode("USD");
$url = "hl=en&q=$amount$from_Currency%3D%3F$to_Currency";
$rawdata = file_get_contents("http://google.com/ig/calculator?".$url);
$data = explode('"', $rawdata);
$data = explode(' ', $data['3']);
$var = $data['0'];
echo $var;
?>https://stackoverflow.com/questions/8324877
复制相似问题