【发布时间】:2014-06-10 09:52:23
【问题描述】:
如何在 opencart 中将 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;
【问题讨论】:
-
您的意见是什么?你期望什么输出?
-
@Rikesh:看到这个问题stackoverflow.com/questions/24136378/…