gpt4 book ai didi

currency - Google 货币转换器 API - 它会被 iGoogle 关闭吗?

转载 作者:行者123 更新时间:2023-12-04 09:01:03 26 4
gpt4 key购买 nike

iGoogle 是 shutting down .

有一个(未记录的?)货币转换 API,其 URL 如下:
http://www.google.com/ig/calculator?hl=en&q=1GBP=?USD

此网址的基础 - google.com/ig - 将您带到 iGoogle。 iGoogle 关闭后 API 是否可用?

最佳答案

我在这里遇到了同样的问题:https://stackoverflow.com/a/19786423/2819754

我使用@hobailey 回答进行临时修复,直到我可以将其更新到另一个版本或谷歌决定做一个适当的 api。

由于谷歌将网址更改为

  https://www.google.com/finance/converter?a

所以我找到的修复如下。
  $amount = urlencode($amount);
$from_Currency = urlencode($from_Currency);
$to_Currency = urlencode($to_Currency);
$get = file_get_contents("https://www.google.com/finance/converter?a=$amount&from=$from_Currency&to=$to_Currency");
$get = explode("<span class=bld>",$get);
$get = explode("</span>",$get[1]);
$converted_amount = preg_replace("/[^0-9\.]/", null, $get[0]);

感谢@hobailey 的这个小修复。

关于currency - Google 货币转换器 API - 它会被 iGoogle 关闭吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17773898/

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