Ipv4过渡ipv6 PHP ORACLE操作过程

本文详细介绍了在PHP中处理IPv4到IPv6过渡时遇到的问题及解决方案,包括ip2long和long2ip的负数问题,以及如何在32位系统中正确转换IP地址。此外,还分享了自定义函数convertIpToString和convertIpToLong以避免错误,并探讨了PHP处理IPv6地址的方法。最后,讨论了Oracle数据库对于IPv4和IPv6的支持和配置步骤。
摘要由CSDN通过智能技术生成

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 (

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值