Ipv4过渡ipv6 PHP ORACLE操作过程
ip2long:将 IPV4 的字符串互联网协议转换成长整型数字
int ip2long ( string $ip_address )
long2ip:将长整型转化为字符串形式带点的互联网标准格式地址(IPV4)
string long2ip ( int $proper_address )
ip2long 出现负数问题。
示例:
i p l o n g = i p 2 l o n g ( ′ 192.168.8.3 0 ′ ) ; ip_long = ip2long('192.168.8.30'); iplong=ip2long(′192.168.8.30′);long_ip = long2ip($ip_long);echo $ip_long; // -1062729698echo $long_ip; // 192.168.8.30
查看PHP手册后,发现手册上是这么介绍的:
Because PHP’s integer type is signed, and many IP addresses will result in negative integers on 32-bit architectures, you need to use the “%u” formatter of sprintf() or printf() to get the string representation of the unsigned IP address.
因为PHP的 integer 类型是有符号,并且有许多的IP地址将导致在32位系统的情况下为负数, 你需要使用 “%u” 进行转换通过 sprintf() 或printf() 得到的字符串来表示无符号的IP地址。
解决办法:
$ip_long = sprintf(’%u’, ip2long(‘192.168.8.30’));echo $ip_long; // 3232237598
接着又发现一个新问题,如果是通过 “%u” 进行转换后再调用 long2ip,会提示错误:
long2ip() expects parameter 1 to be integer,string given
接着查手册,PHP手册上是这么介绍的:
On 32-bit architectures, casting integer representations of IP addresses from string to integer is not suppossed to give correct results for numbers which exceed PHP_INT_MAX.
在 32 位架构中,从 string 转换 integer 整型形式的 ip 地址将有可能导致错误的结果,因为结果数字超出了 PHP_INT_MAX 限制。
最终解决办法,封装两个方法:
/**
- 代替 long2ip 函数
- @param $ip
- @return string
*/
function convertIpToString($ip)
{
l o n g = 4294967295 − ( long = 4294967295 - ( long=4294967295−(ip - 1);
return long2ip(-$long);
}
/**
- 代替 ip2long 函数
- @param $ip
- @return string
*/
function convertIpToLong(KaTeX parse error: Expected '}', got 'EOF' at end of input: …("%u", ip2long(ip));
}
测试调用:
$ip_long = t h i s − > c o n v e r t I p T o L o n g (