将 IPv4 地址转换为长整数:
<?php
$ip = gethostbyname("www.91xjr.com");
$out = "The following URLs are equivalent:<br>";
$out .= "https://www.91xjr.com/, https://" . $ip . "/, and https://" . sprintf("%u", ip2long($ip)) . "/";
echo $out;
?>
ip2long() 函数将 IPv4 地址转换为长整数。
ip2long(
address)
Parameter | Description |
---|---|
address | Required. Specifies a standard IP address |
返回值: | 一个长整数。失败时为 FALSE |
---|---|
PHP 版本: | 4.0+ |
PHP 变更日志: | PHP 5.5:在此版本之前,在 Windows 上,即使传递的值不是 IPv4 地址,此函数也可能返回有效数字。 PHP 5.2: PHP 5.5:在此版本之前,即使传递的值不是 IPv4 地址,此函数也可能返回有效数字。 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!