web-dev-qa-db-ja.com

IPアドレスで国コードと通貨コードを取得するにはどうすればよいですか?

私はzendFrameworkを初めて使用します。そして、IPアドレスで通貨コード、国コードを取得したいです。

URLの例を教えてもらえますか?.

私を助けてください...

前もって感謝します。

11
Manoj

多くの-貴重なアドバイスをくれたjmathaiToonMarinerexperimentXに感謝します。

しかし、私は簡単な解決策を持っています

 public function getCountryIp()
{
    $currency = new Zend_Currency();
    $countryCode = $this->getCountryFromIP();
    $currencyCode = $currency->getCurrencyList($countryCode);
    $localCurrency = $this->currency('USD',$currencyCode[0],50);
    $var['currencyCode'] = $currencyCode[0];
    $var['currency'] = $localCurrency;
    return $var;
}



//use to convert currency



public function currency($from_Currency, $to_Currency, $amount)
 {
        $amount = urlencode($amount);
        $from_Currency = urlencode($from_Currency);
        $to_Currency = urlencode($to_Currency);
        $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']);
        $stripped = ereg_replace("[^A-Za-z0-9.\+]", "", $data['0']);//remove special char
        return round($stripped,3);
//        $var = $data['0'];
//        return $var;
//        return round($var, 8);
    }

 //get ip-address and show country code


 public function getCountryFromIP()
 {
     $ip = $_SERVER['REMOTE_ADDR'];

    $country = exec("whois $ip  | grep -i country"); // Run a local whois and get the result back
    //$country = strtolower($country); // Make all text lower case so we can use str_replace happily
    // Clean up the results as some whois results come back with odd results, this should cater for most issues
    $country = str_replace("country:", "", "$country");
    $country = str_replace("Country:", "", "$country");
    $country = str_replace("Country :", "", "$country");
    $country = str_replace("country :", "", "$country");
    $country = str_replace("network:country-code:", "", "$country");
    $country = str_replace("network:Country-Code:", "", "$country");
    $country = str_replace("Network:Country-Code:", "", "$country");
    $country = str_replace("network:organization-", "", "$country");
    $country = str_replace("network:organization-usa", "us", "$country");
    $country = str_replace("network:country-code;i:us", "us", "$country");
    $country = str_replace("eu#countryisreallysomewhereinafricanregion", "af", "$country");
    $country = str_replace("", "", "$country");
    $country = str_replace("countryunderunadministration", "", "$country");
    $country = str_replace(" ", "", "$country");

    return $country;
 }
6
Manoj

私のサービスである http://ipinfo.io APIを使用して、国コードを取得できます。

function get_country($ip) {
    return file_get_contents("http://ipinfo.io/{$ip}/country");
}

echo get_country("8.8.8.8"); // => US

他の詳細に興味がある場合は、より一般的な関数を作成できます。

function ip_details($ip) {
    $json = file_get_contents("http://ipinfo.io/{$ip}");
    $details = json_decode($json);
    return $details;
}

$details = ip_details("8.8.8.8");

echo $details->city;     // => Mountain View
echo $details->country;  // => US
echo $details->org;      // => AS15169 Google Inc.
echo $details->hostname; // => google-public-dns-a.google.com

これらの例ではIP8.8.8.8を使用しましたが、ユーザーのIPの詳細が必要な場合は、代わりに$_SERVER['REMOTE_ADDR']を渡してください。詳細については、 http://ipinfo.io/developers をご覧ください。

http://country.io/data/ から国コードから通貨コードへのマッピングを取得し、それをコードに追加できます。簡単な例を次に示します。

function getCurrenyCode($country_code) {
    $currency_codes = array(
        'GB' => 'GBP',
        'FR' => 'EUR',
        'DE' => 'EUR',
        'IT' => 'EUR',
    );

    if(isset($currency_codes[$country_code])) {
        return $curreny_codes[$country_code];
    }

    return 'USD'; // Default to USD
}
11
Ben Dowling

ipdata.co に基づく例。これは、IPアドレスから直接通貨記号とコードを提供します。

この回答では、非常に限定された「テスト」APIキーを使用しており、いくつかの呼び出しをテストすることのみを目的としています。 サインアップ 独自の無料APIキーを使用して、開発のために毎日最大1500件のリクエストを取得します。

APIには10個のグローバルエンドポイントもあり、それぞれが1秒あたり10,000を超える呼び出しを処理できます。

$ip = '78.8.53.5';
$details = json_decode(file_get_contents("https://api.ipdata.co/{$ip}?api-key=test"));
echo $details->country_name;
//Poland
echo $details->city;
//Głogów
echo $details->currency;
// PLN
echo $details->currency_symbol;
// zł

免責事項

このサービスを作成しました。

2
Jonathan

これにはMaxMindデータベースを使用できるはずです。

http://www.maxmind.com/app/country

2
jmathai

詳細な国コード、通貨、通貨コンバーター、通貨記号などを http://www.geoplugin.net/json.gp?ip= "ip address here" から取得します。

enter image description here

2

geoip のようなものが必要になります-私が最近使用したサブスクリプションベースの別のものがあります(moでその名前を覚えることはできません)。

1
Ian Wood

おそらくこれも役立つはずです http://api.ip2.cc.nyud.net/?api=cname&ip=112.197.167.19

また、優れた質問があります IPから国コードを抽出するための優れたphp API? おそらく、zendフレームワークで国コードと通貨コードを抽出するためのプラグインを作成できます。

1
Santosh Linkha
(new Zend_Currency(null, 'GB'))->getShortName();

戻り値 string 'GBP'

0
umpirsky

このタスクには https://ip-api.io を簡単に使用できます。

0
Andrey E