如何使用PHP将美元转换为其他货币

时间:2018-10-09 06:27:31

标签: php codeigniter

我需要PHP编码才能将USD转换为所有本地货币。我找到了很多链接 股票溢出,但它们无法正常工作。特别是,这个(https://www.google.com/finance/converter?a= $ amount&from = $ from&to = $ to)链接无法正常工作,可以为我解决问题

1 个答案:

答案 0 :(得分:0)

这是使用Google API在php中转换货币的简单方法

function currencyConverter($from_currency, $to_currency, $amount) {
  $from_Currency = urlencode($from_currency);
  $to_Currency = urlencode($to_currency);
  $encode_amount = urlencode($amount);
  $get = file_get_contents("https://www.google.com/finance/converter?a=$encode_amount&from=$from_Currency&to=$to_Currency");
  $get = explode("<span class=bld>",$get);
  $get = explode("</span>",$get[1]);
  $converted_currency = preg_replace("/[^0-9\.]/", null, $get[0]);
  return $converted_currency;
}

有关Currency Converter

的更多详细信息