是否有任何api提供准确转换的货币价值?我使用谷歌和雅虎api,但他们没有将VND(越南盾)的所需结果兑换成美元。
答案 0 :(得分:2)
这是怎么回事?
<?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;
?>
答案 1 :(得分:0)
你可以使用money.js http://josscrowcroft.github.com/money.js/