3

我有以下代码(如下)并且使用的是 iGoogle 版本。

   $url = 'http://www.google.com/ig/calculator?hl=en&q=' . $amount . $from_Currency . '=?' . $to_Currency;

    $ch = curl_init();
    $timeout = 0;

    curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch,  CURLOPT_USERAGENT , "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $rawdata = curl_exec($ch);
    curl_close($ch);

    $data = explode('"', $rawdata);
    $data = explode(' ', $data[3]);
    $var = $data[0];

但是看起来他们正在使用不同的 URL:

  'http://www.google.com/finance/converter?hl=en&a=' . $amount . '&from=' . $from_Currency . '&to=USD';

但简单地更改 url 并不会返回我习惯的所需结果。

现在我会得到的是

 http://www.w3.org/TR/html4/strict.dtd

所以有人在这个最新的货币转换器 URL 上工作过或有任何想法。或使用 PHP 替换

4

4 回答 4

14

多亏了对问题进行了更深入的查找和重新措辞,才发现了这篇文章。所以在某种程度上它是重复的。但这是一个问题:

需要用于货币转换的 API

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

  $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]);
于 2013-11-07T14:33:06.327 回答
4

使用 XPath:

function currency($from, $to, $amount)
{
   $content = file_get_contents('https://www.google.com/finance/converter?a='.$amount.'&from='.$from.'&to='.$to);

   $doc = new DOMDocument;
   @$doc->loadHTML($content);
   $xpath = new DOMXpath($doc);

   $result = $xpath->query('//*[@id="currency_converter_result"]/span')->item(0)->nodeValue;

   return str_replace(' '.$to, '', $result);
}

echo currency('USD', 'EUR', 1); // returns 0.7216
于 2014-05-02T10:53:29.780 回答
2

我在这里创建了一个以更简单的方式连接到 Google 的类。

货币转换器-php

我希望它应该使某些方面更容易!

编辑:我只知道谷歌服务于 2013 年 11 月关闭。

我要换了!

再次编辑:我已将 Google Api 更改为 Yahoo Api,它工作得非常好!

于 2013-11-07T14:57:14.650 回答
1

我找到了另一种解决方案。如果您的服务器 IP 无法使用 google 服务,它也可以使用。

<?php
    $from_currency    = 'USD';
    $to_currency    = 'INR';
    $amount            = 1;
    $results = converCurrency($from_currency,$to_currency,$amount);
    $regularExpression     = '#\<span class=bld\>(.+?)\<\/span\>#s';
    preg_match($regularExpression, $results, $finalData);
    echo $finalData[0];

    function converCurrency($from,$to,$amount){
        $url = "http://www.google.com/finance/converter?a=$amount&from=$from&to=$to"; 
        $request = curl_init(); 
        $timeOut = 0; 
        curl_setopt ($request, CURLOPT_URL, $url); 
        curl_setopt ($request, CURLOPT_RETURNTRANSFER, 1); 
        curl_setopt ($request, CURLOPT_USERAGENT,"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)"); 
        curl_setopt ($request, CURLOPT_CONNECTTIMEOUT, $timeOut); 
        $response = curl_exec($request); 
        curl_close($request); 
        return $response;
    } 
?>

来源参考Step Blogging

于 2016-06-29T14:56:59.657 回答