在PHP代码中查找IP到国家/地区代码

时间:2014-01-27 13:02:38

标签: php ip

嗨我想从ip地址获取国家/地区代码数据 例如,该网站提供此链接等免费服务 http://freegeoip.net/json/23.94.30.210 此链接显示所有数据,但我只需要"country_code":"US"

请告诉我如何在php中实现此链接仅获取“country_code”:“US”。

3 个答案:

答案 0 :(得分:2)

使用函数file_get_contents

$jsonData = file_get_contents("http://freegeoip.net/json/23.94.30.210");
$countryInfo = json_decode($jsonData,true);

DEMO

答案 1 :(得分:0)

首先,请参阅相关问题Getting visitors country from their IP。您可以使用Geo IP Location

答案 2 :(得分:0)

看起来数据已经过JSON编码。您需要使用PHP中提供的JSON函数对其进行解码,并检索国家/地区代码(假设您已设法使用cURL检索信息)。

以下是代码示例:

// $data contains the information shown at http://freegeoip.net/json/23.94.30.210.
$decoded = json_decode($data);
$country_code = $decoded['country_code'];