使用以下 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
。