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