Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

PHP | gethostbyaddr() function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The gethostbyaddr() function is an inbuilt function in PHP which returns domain name for a specified IP address.

Syntax:

gethostbyaddr($ip_address);

Parameter: This function accepts one parameter as mentioned above and described below:

  • $ip_address: It is required parameter. It specifies IP address whose host name to be found. Passed as a string.

Return Value:

  • This function returns hostname on success and IP address on failure.

Note:

  • This function is available for PHP 4.0.0 and newer version.

Example




<?php
$host = gethostbyaddr("52.25.109.230");
echo $host;
?>


Output:

ec2-52-25-109-230.us-west-2.compute.amazonaws.com

Reference: https://www.php.net/manual/en/function.gethostbyaddr.php

My Personal Notes arrow_drop_up
Last Updated : 29 Aug, 2019
Like Article
Save Article
Similar Reads
Related Tutorials