我摆弄着freegeoip.net,试图为访问者的IP获取更多信息。我可以成功检索用户 IP 的数组信息,但似乎无法将数组分解并获取 IP、城市、国家/地区代码等的单个变量。
数组结果:
Array ( [ip] => 77.99.179.98 [country_code] => GB [country_name] => United Kingdom [region_code] => ENG [region_name] => England [city] => Gloucester [zip_code] => GL1 [time_zone] => Europe/London [latitude] => 51.8333 [longitude] => -2.25 [metro_code] => 0 )
.PHP
<?php
$ip = "77.99.179.98";
$geoip = json_decode(file_get_contents('http://freegeoip.net/json/'.$ip), true);
print_r($geoip);
foreach ($geoip as $result) {
echo $result['ip']."<br>";
}
?>
编辑:我现在收到一个Warning: Illegal string offset 'ip' in ... on line 9
错误,但确实返回了 IP 地址的第一个数字......咦?
终于!
<?php
$ip = "77.99.179.98";
$ip_data = file_get_contents('http://freegeoip.net/json/'.$ip);
$data = json_decode($ip_data);
print_r($data);
echo "<br><br>";
echo htmlspecialchars($data->country_name);
?>