ip2long
(PHP 4, PHP 5)
ip2long — (IPv4) 인터넷 프로토콜의 점이 찍혀 있는 주소를 포함한 문자열을 고유의 주소로 바꾸어줍니다.
Description
int ip2long
( string $ip_address
)
ip2long() 함수는 보통의(점이 찍혀 있는 문자열) 인터넷 표시 형식에서 IPv4 인터넷 네트워크 주소를 생성합니다.
Example#1 ip2long() Example
<?php
$ip = gethostbyname("www.php.net");
$out = "아래의 URL과 같습니다:<br>\n";
$out .= "https://www.php.net/, https://".$ip."/, and https://".ip2long($ip)."/<br>\n";
echo $out;
?>
See also: long2ip()