0

使用以下 PHP/SQL...

function ip2long6($ip)
{//ipv6 to ipv4 (string) to get Windows 7 local working
// Temp work-around until we convert the string to support ipv6 natively in SQL.
 if (substr_count($ip, '::')) {$ip = str_replace('::', str_repeat(':0000', 8 - substr_count($ip,':')).':',$ip);}

 $ip = explode(':',$ip);
 $r_ip = '';

 foreach ($ip as $v) {$r_ip .= str_pad(base_convert($v,16,2),16,0,STR_PAD_LEFT);}

 return base_convert($r_ip,2,10);
}

$ip = mysql_real_escape_string($_SERVER['REMOTE_ADDR']);
$ip = mysql_real_escape_string(ip2long6($ip));
INSERT INTO log (ip) VALUES (INET_ATON('1208321'))

我收到以下错误...

列“ip”不能为空

我们现在如何让 $ip 与 IPv4 兼容?


一个有效的答案......

if (is_int($ip)) {$ipsql = mysql_real_escape_string("INET_ATON('$ip')");}
else {$ipsql = mysql_real_escape_string($ip);}

有了这个,我只是INET_ATON('$ip')回复$ipsql

4

1 回答 1

0

您正在使用 INET_ATON 转换字符串整数。该函数需要一个 dotted.quad 地址,例如

INET_ATON('127.0.0.1');

不是有效输入,因此函数返回 null:

mysql> select inet_aton('12345'), inet_aton('127.0.0.1');
+--------------------+------------------------+
| inet_aton('12345') | inet_aton('127.0.0.1') |
+--------------------+------------------------+
|               NULL |             2130706433 |
+--------------------+------------------------+
于 2013-03-31T20:12:55.703 回答