We can get the ip address of the host server by using the domain name. For example we want to know the ip address of google.com. We can use the PHP function gethostbyname(). This function takes the domain name as input and return the dot formatted IPv4 address. Note that this function will contact DNS server so available network must be healthy at the time of running of the script. Let us try the function first.
This is the ip address of the host server of plus2net.com.
Gethostbyaddr()
Now from this information we can find out the domain name by using another function gethostbyaddr(). This function will take ip address as input and return the domain name. Let us add the above two functions and see what happens if out put of one function is used as input to other. Here is the code.
This function gives us more information. It returns an array with all the details. To display this array we will use print_r function. Here is the code.