Convert IP Address to Hostname using PHP September 10, 2020 PHP 0 Comments 610 Views gethostbyaddr function <?php $ip = '8.8.8.8'; $hostname = gethostbyaddr($ip); echo $hostname;
Leave a Comment
Cancel reply