使用php的货币转换api

时间:2011-11-30 11:03:40

标签: php api currency

  

可能重复:
  Programmatically access currency exchange rates

是否有任何api提供准确转换的货币价值?我使用谷歌和雅虎api,但他们没有将VND(越南盾)的所需结果兑换成美元。

2 个答案:

答案 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)

相关问题