php 货币换算

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 货币换算相关的知识,希望对你有一定的参考价值。

/**
 * @param $currency_from ,$currency_to,$currency_input
 * @return mixed|float
 */
function currencyConverter($currency_from, $currency_to, $currency_input)
{
    $yql_base_url = "http://query.yahooapis.com/v1/public/yql";
    $yql_query = 'select * from yahoo.finance.xchange where pair in ("' . $currency_from . $currency_to . '")';
    $yql_query_url = $yql_base_url . "?q=" . urlencode($yql_query);
    $yql_query_url .= "&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
    $yql_session = file_get_contents($yql_query_url);
    $yql_json = json_decode($yql_session, true);
    $currency_output = (float)$currency_input * $yql_json['query']['results']['rate']['Rate'];
    return $currency_output;
}

以上是关于php 货币换算的主要内容,如果未能解决你的问题,请参考以下文章

华为OD机试用java实现 -货币单位换算

php里实现汇率转换

华为OD机试真题 Java 实现货币单位换算2022.11 Q4 新题

华为OD机试真题 C++ 实现货币单位换算2022.11 Q4 新题

华为OD机试真题 Python 实现货币单位换算2022.11 Q4 新题

华为OD机试真题 JS 实现货币单位换算2023 Q1 | 100分