Geoip_record_by_addr确实且始终为空



我使用MaxMind GeoIP与这个脚本:

$gi = geoip_open(RESSOURCE_PATH.'/MaxMind/tests/data/GeoIPCity.dat', GEOIP_STANDARD);
// $rsGeoData = GeoIP_record_by_addr($gi, $_SERVER['REMOTE_ADDR']);
$rsGeoData = GeoIP_record_by_addr($gi, '91.213.180.118');
echo("<pre>");
print_r($rsGeoData);
echo("</pre>");
geoip_close($gi);

但是$rsGeoData总是null(不是一个空值的数组,而是真正的"null",即is_null($rsGeoData)===null)。geoipcity.inc文件的这个函数返回Null:

function _get_record($gi, $ipnum)
{
    $seek_country = _geoip_seek_country($gi, $ipnum);
    if ($seek_country == $gi->databaseSegments) {
        return null;
    }
    return _common_get_record($gi, $seek_country);
}

我真的不明白为什么……你能帮我一下吗?

从您的文件路径来看,我猜您正在使用为单元测试创建的数据库,而不是完整的数据库。我建议从MaxMind下载一个geoolite数据库。

相关内容

  • 没有找到相关文章

最新更新