gpt4 book ai didi

php - 在狗狗币中转换欧元

转载 作者:可可西里 更新时间:2023-10-31 23:31:08 25 4
gpt4 key购买 nike

所以我要将狗狗币整合到我的商务网站中。我的产品可以用欧元货币购买,并且可以用 doecoin 提供,我需要将欧元转换为 Dogecoin。

我所做的:我在 php 中找到了 DOGECOIN API ( https://www.dogeapi.com )。我发现我们可以将 DOGECOIN 转换为 BTC 或 USD。使用这个:

https://www.dogeapi.com/wow/?a=get_current_price&convert_to=USD&amount_doge=1000

上面的 URL 给了我来自 DOGE AMOUNT 的总美元。输出是:1.13949000

我的问题是:如何将欧元转换为 DOGEAMOUNT?我搜索了很多但没有找到任何解决方案。请帮忙。提前致谢。

最佳答案

有点乱但是有用(它使用另一个 url 来获取 USD,EUR 的兑换)

$doge2usd = file_get_contents("https://www.dogeapi.com/wow/?a=get_current_price&convert_to=USD&amount_doge=1");
echo sprintf("1 dogecoin => %f usd",$doge2usd); // 1 DOGE => USD 0.00115078

$eur2usd = file_get_contents("http://rate-exchange.appspot.com/currency?from=EUR&to=USD");
$j = json_decode($eur2usd,TRUE);
$doge2eur = $doge2usd * (1 / $j["rate"]); // 1 DOGE => 0.00083941557920536 EUR
echo sprintf("<br>1 dogecoins => %f euro, 5 dogecoins => %f euro",$doge2eur,$doge2eur*5);

$eur2doge = 1 / $doge2eur; // 1 EUR => DOGE 1197.29
echo sprintf("<br>1 euro => %f dogecoins, 5 euro => %f dogecoins",$eur2doge,$eur2doge*5);

关于php - 在狗狗币中转换欧元,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22089410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com