Help for this page

Select Code to Download


  1. or download this
        gethostbyaddr(192.168.1.1, AF_INET);
    
  2. or download this
        $ip = inet_aton('192.168.1.1');
        print gethostbyaddr($ip, AF_INET);
    
  3. or download this
        my $ip = inet_aton($&);
        my $name = gethostbyaddr($ip, AF_INET);