目录

PHP ip2long() 函数

❮ PHP 网络参考

示例

将 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 地址,此函数也可能返回有效数字。

❮ PHP 网络参考