PHP ip2long()関数
例
IPv4アドレスを長整数に変換します。
<?php
$ip = gethostbyname("www.w3schools.com");
$out = "The following URLs are equivalent:<br>";
$out .= "https://www.w3schools.com/, https://" . $ip . "/, and https://" . sprintf("%u", ip2long($ip)) . "/";
echo $out;
?>
定義と使用法
ip2long()関数は、IPv4アドレスを長整数に変換します。
構文
<div>ip2long(<em>address</em>)</div>
パラメータ値
パラメータ |
説明 |
---|---|
adress | Required 標準IPアドレスを指定します |
Technical Details
Return Value: | 長い整数。失敗した場合はFALSE |
---|---|
PHP バージョン: |
4.0+ |
PHP 変更ログ: |
PHP 5.5: このバージョンより前のWindowsでは、この関数は
渡された値がIPv4アドレスでなくても有効な数値です。 PHP 5.2: PHP 5.5: |
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。