1

示例: http: //www.whois.net/whois/hotmail.com

在浏览器中打开时,会显示输出。

使用 curl 调用时,它什么也不显示。

怎么了?我想返回整个页面结果,然后使用正则表达式在 Expiration Date: 29-Mar-2015 00:00:00 行检索数据。

$postfields= null; 
$postfields["noneed"] = "";
$queryurl= "http://www.whois.net/whois/hotmail.com";

$results= getUrlContent($postfields, $queryurl);
echo $results;


 function getUrlContent($postfields,$api_url)
 {  
  if( !extension_loaded('curl') ){die('You need to load/activate the cURL extension (http://www.php.net/cURL).'); }

  $ch = curl_init();  
  curl_setopt($ch, CURLOPT_URL, $api_url); // set the url to fetch
  curl_setopt($ch, CURLOPT_HEADER, 0); // set headers (0 = no headers in result)
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // type of transfer (1 = to string)
  curl_setopt($ch, CURLOPT_TIMEOUT, 10); // time to wait in seconds
  curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);  
  $content = curl_exec($ch); // make the call  
  curl_close($ch);  
  return $content;
 } 
4

2 回答 2

3

Whois.net 检查user agent。因此,在您调用之前将这些添加到您的函数中curl_exec

$useragent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1";
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
于 2010-02-09T03:57:18.543 回答
1

您看到的错误与 whois.com 无关,它表明您尚未为 PHP 启用 cURL 模块。首先尝试启用 PHP cURL 模块。

如果您不确定如何启用 PHP cURL 模块,请关注此线程:如何在 PHP / XAMPP 中启用 cURL

希里什语

于 2015-04-18T05:19:24.193 回答