Php/func network gethostbyaddr
来自菜鸟教程
PHP gethostbyaddr()函数
例
一个简单的gethostbyaddr()示例:
<?php $host = gethostbyaddr($_SERVER["REMOTE_ADDR"]); echo $host; ?>
定义和用法
gethostbyaddr()函数返回给定IP地址的域名。
句法
gethostbyaddr(ipaddress)
参数值
参数 | 描述 |
---|---|
ipaddress | 需要。指定一个IP地址 |
技术细节
返回值: | 成功的主机名。IP地址或失败时为FALSE。 |
PHP版本: | 4.0+ |