php怎样采集https协议的网页

 php在使用curl采集时,需要增加下面的两个选项:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

 

你可能感兴趣的