Convert Hostname to IP Address using PHP September 9, 2020 PHP 0 Comments 697 Views gethostbyname function <?php $hostname = 'google.com'; $ip = gethostbyname($hostname); echo $ip;
Leave a Comment
Cancel reply