9

我正在尝试执行 HTTPS 请求:

curl_setopt($curl, CURLOPT_URL, 'https://***.com');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiesFile);
curl_setopt($curl, CURLOPT_VERBOSE, true);
$out = curl_exec($curl);

请求后, $out 是空的,我得到这个日志:

* About to connect() to ***.com port 443 (#0)
*   Trying *.*.*.*...
* connected
* Connected to ***.com (*.*.*.*) port 443 (#0)
* error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:reason(1112)
* Closing connection #0

为什么?

4

2 回答 2

26

使固定:

curl_setopt($ch, CURLOPT_SSLVERSION,3); 
于 2013-08-12T16:12:42.873 回答
1

如果您使用 PRTG 并收到此错误,请转到设置并将“SSL V2 或 V3”更改为“SSL V3”。

于 2014-03-07T17:12:27.217 回答