php curl得到像人类一样的页面

时间:2015-01-03 18:51:26

标签: php curl

当我使用Chrome互联网浏览器浏览online.az网站时,一切正常。网站正在为我开放。但我想用curl打开这个网站。我的PHP代码:

// cookie //
$tmpfname = tempnam("/tmp", "FOO");
$handle = fopen($tmpfname, "w");
fwrite($handle, '');
fclose($handle);
// cookie //
function file_get_contents_curl($url) {
global $tmpfname;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);       
    curl_setopt($ch, CURLOPT_COOKIEJAR, $tmpfname);
    curl_setopt($ch, CURLOPT_COOKIEFILE, $tmpfname);
    curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36');
    $data = curl_exec($ch);
    curl_close($ch);
    return $data;
}
$get = file_get_contents_curl('https://online.az//');
echo $get;

但是这个代码网站没有打开。

1 个答案:

答案 0 :(得分:3)

它是一个HTTPS站点,因此需要处理SSL。快速解决方法是添加:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

这只是绕过了证书验证。

更好的解决方法是启用验证,但要做到这一点,您必须从服务器下载证书并保存,因此PHP可以将其与服务器版本进行比较。

然后你可以像这样添加它:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_CAINFO, "PathToYour/Certificate.crt");

有关更详细的说明,请参阅本教程:

http://unitstep.net/blog/2009/05/05/using-curl-in-php-to-access-https-ssltls-protected-sites/