我正在努力实现一些geoIP
功能,将用户从我的 .com 站点重定向到相关的国家域(.fr、.es、.co.uk ...等)。
我有以下内容index.php
来检查用户 IP:
ini_set('display_errors', 1);
require_once("geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$country_code = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
geoip_close($gi);
if($country_code == 'ES')
{
header('Location: https://www.testsite.es');
}
elseif($country_code == 'GB')
{
header('Location: https://www.testsite.co.uk');
}
elseif($country_code == 'FR')
{
header('Location: https://www.testsite.fr');
}
else {
header('Location: https://www.testsite.com/home');
}
当我检查$country_code
变量时,它是一个空字符串,因此上述失败,我总是点击https://www.testsite.com/home
...
我开始研究代码并注意到首先我调用了这个方法:
function geoip_country_code_by_addr($gi, $addr) {
if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
$record = geoip_record_by_addr($gi, $addr);
if ($record !== false) {
return $record->country_code;
}
} else {
$country_id = geoip_country_id_by_addr($gi, $addr);
if ($country_id !== false) {
return $gi->GEOIP_COUNTRY_CODES[$country_id];
}
}
return false;
}
调用:
function geoip_country_id_by_addr($gi, $addr) {
$ipnum = ip2long($addr);
return _geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
}
我不知道为什么它一直失败并返回“0”?我正在使用 Maxminds geoip.inc php 来检查国家代码。
我已经检查了mbstring
在我的 php.ini 文件中启用了它,它是。出于某种原因,它只是找不到基于我传递给它的 IP 的国家代码。有人对可能导致这种情况的原因有任何帮助吗?