2014-01-17 117 views
2

我想從IP地址的網站獲取標題。我用get_header()但這隻適用於URL!還有其他方法可以做到這一點嗎? 不使用gethostbyaddre獲取網站標題與IP

回答

2
  • 你有一個IP地址,例如:127.0.0.1

  • 你想用get_headers()(尾隨小號

  • ...但是get_headers()expects a URL

    array get_headers (string $url [, int $format = 0 ]) 
    
  • 您添加了http://,您將得到一個網址:http://127.0.0.1-voilá!

0

使用$ _SERVER ['REMOTE_ADDR']獲取IP地址。

0

您可以進行cUrl調用,而不是分析並從服務器的響應中提取標頭。

5

你實際上可以使用一個IP。由於沒有代碼,我不能說出錯哪裏。但我可以告訴它應該怎麼做:

$url = 'http://173.194.65.101/'; 
$headers = get_headers($url); 
print_r($headers);