INR兑换美元兑换opencart值

时间:2014-06-10 09:52:24

标签: php arrays opencart json

如何在开放式汽车中将INR卢比兑换成美元。我试过以下代码......

    $json_from = number_format($item_total, 2, '.', '');
    $url = "http://rate-exchange.appspot.com/currency?from='.$json_from.'&to=USD";
    $jsons = @file_get_contents($url);
    $json_data = json_decode($jsons, true);
    $to_cur = $json_data['results'][0];


    $data['PAYMENTREQUEST_0_ITEMAMT'] = $to_curr;
    $data['PAYMENTREQUEST_0_AMT'] = $to_curr;

1 个答案:

答案 0 :(得分:1)

您的网址对api的调用不正确,您需要拨打电话,

$url = "http://rate-exchange.appspot.com/currency?from=INR&to=USD";

从那里,您将获得将INR转换为美元的转换率,就像现在提供0.0168728而不是您的金额的倍数来获得预期结果。

旁注:您还可以将第三个参数作为&q=4300传递,以直接从api获取转换后的值。 Example

<强> DEMO