【发布时间】:2014-09-24 06:01:36
【问题描述】:
我正在尝试使用 php curl 7.35.0 使用以下代码访问以下页面:
$this->ch = curl_init();
curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, 3000);
curl_setopt($this->ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36");
curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($this->ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
curl_setopt($this->ch, CURLOPT_TIMEOUT, 3600);
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->ch, CURLOPT_URL, 'https://asp.reflexion.net/login');
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
$content = curl_exec($this->ch);
$httpCode = curl_getinfo($this->ch, CURLINFO_HTTP_CODE);
if ($errno = curl_errno($this->ch))
{
$error_message = curl_strerror($errno);
echo "cURL error ({$errno}):\n {$error_message}";
}
echo "<br>";
echo "http code: " . $httpCode . "<br>";
echo "content: " . $content;
返回以下内容:
cURL 错误 (35):SSL 连接错误
http 代码:0 内容:
以前有人遇到过这个问题吗?
【问题讨论】:
-
该错误代码表示超时。您与该主机的网络连接很可能出现故障。 PHP 中 curl 绑定使用的 SSL 库可能存在问题。
-
我该如何解决这个问题?看起来我无法使用 Chrome 毫无问题地访问该页面。
-
“以前有人遇到过这个问题吗?” - let's check, shall we?