PHP 货币转换
Posted Ryan.zheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 货币转换相关的知识,希望对你有一定的参考价值。
使用以下代码,可以获取当天的汇率进行货币转换
function convert_currency($number, $currency) { // Fetching JSON $req_url = ‘https://api.exchangerate-api.com/v4/latest/USD‘; $response_json = file_get_contents($req_url); // Continuing if we got a result if (false !== $response_json) { // Try/catch for json_decode operation try { // Decoding $response_object = json_decode($response_json); if (!property_exists($response_object->rates, $currency)) { return 0; } return round($number / $response_object->rates->$currency, 2); } catch (Exception $e) { return 0; } } } echo convert_currency(100, "CNY");
以上是关于PHP 货币转换的主要内容,如果未能解决你的问题,请参考以下文章
Bittrex API 加密货币交易者:php 到 Java 的转换