How to get the Internet host name corresponding to a given IP address in PHP

2 Answers

0 votes
echo gethostbyaddr("98.139.180.180");

 
  
/*
run: 
 
media-router...yahoo.com
 
*/

 



answered Nov 10, 2017 by avibootz
edited Nov 11, 2017 by avibootz
0 votes
echo gethostbyaddr($_SERVER['REMOTE_ADDR']);

 
  
/*
run: 
 
A...P
 
*/
 

 



answered Nov 11, 2017 by avibootz

Related questions

...