Php/func network ip2long
来自菜鸟教程
PHP ip2long()函数
例
将IPv4地址转换为长整数:
<?php $ip = gethostbyname("www.example.com"); $out = "The following URLs are equivalent:<br>"; $out .= "https://www.example.com/, https://" . $ip . "/, and https://" . sprintf("%u", ip2long($ip)) . "/"; echo $out; ?>
定义和用法
ip2long()函数将IPv4地址转换为长整数。
句法
ip2long(address)
参数值
参数 | 描述 |
---|---|
address | 需要。指定标准IP地址 |
技术细节
返回值: | 一个长整数。失败时为假 |
PHP版本: | 4.0+ |
PHP更新日志: | PHP 5.5:在此版本之前,在Windows上,即使传递的值不是IPv4地址,此函数也可能返回有效数字。 PHP 5.2:PHP 5.5:在此版本之前,即使传递的值不是IPv4地址,此函数也可能返回有效数字。 |