gethostbyaddr()函數是PHP中的內置函數,它返回指定IP地址的域名。
用法:
gethostbyaddr($ip_address);
參數:該函數接受上麵提到並在下麵描述的一個參數:
- $ip_address:必填參數。它指定要查找其主機名的IP地址。作為字符串傳遞。
返回值:
- 此函數成功返回主機名,失敗返回IP地址。
注意:
- 此函數可用於PHP 4.0.0和更高版本。
例
<?php
$host = gethostbyaddr("52.25.109.230");
echo $host;
?>
輸出:
ec2-52-25-109-230.us-west-2.compute.amazonaws.com
參考: https://www.php.net/manual/en/function.gethostbyaddr.php
相關用法
- PHP pow( )用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- p5.js pow()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js sq()用法及代碼示例
- PHP pi( )用法及代碼示例
- p5.js value()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- p5.js max()用法及代碼示例
注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 PHP | gethostbyaddr() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。