PHP - ip2long 函数



语法

int ip2long ( string $ip_address )

定义和用法

它用于将 IPv4 地址转换为长整数。

返回值

它返回长整数,或者显示 IP 地址无效的消息。

参数

序号 参数及描述
1

ip_address

包含 IP 地址。

示例

尝试以下示例

<?php
   $ip = gethostbyname('www.tutorialspoint.com');
   $out = "The following URLs are equivalent:
   \n";
   
   $out .= 'https://tutorialspoint.com/, http://' . $ip . '/, 
      and http://' . sprintf("%u", ip2long($ip)) . "/
   \n";
   
   echo $out;
?>

这将产生以下结果:

The following URLs are equivalent:
https://tutorialspoint.com/, http://72.21.91.8/, and http://1209359112/
php_function_reference.htm
广告