我在Windows服务器上使用cURL和PHP面临一个奇怪的问题。我有一个非常基本的代码:
private function curlConnection($method, $url, $timeout, $charset, array $data = null)
{
if (strtoupper($method) === 'POST') {
$postFields = ($data ? http_build_query($data, '', '&') : "");
$contentLength = "Content-length: " . strlen($postFields);
$methodOptions = array(
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $postFields,
);
} else {
$contentLength = null;
$methodOptions = array(
CURLOPT_HTTPGET => true
);
}
$options = array(
CURLOPT_HTTPHEADER => array(
"Content-Type: application/x-www-form-urlencoded; charset=" . $charset,
$contentLength,
'lib-description: php:' . PagSeguroLibrary::getVersion(),
'language-engine-description: php:' . PagSeguroLibrary::getPHPVersion()
),
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HEADER => true,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_CONNECTTIMEOUT => $timeout
);
$options = ($options + $methodOptions);
$curl = curl_init();
curl_setopt_array($curl, $options);
$resp = curl_exec($curl);
$info = curl_getinfo($curl);
$error = curl_errno($curl);
$errorMessage = curl_error($curl);
curl_close($curl);
$this->setStatus((int) $info['http_code']);
$this->setResponse((String) $resp);
if ($error) {
throw new Exception("CURL can't connect: $errorMessage");
} else {
return true;
}
}
问题是第一次调用此脚本时,响应总是这样:字符串(22)" SSL连接超时"。
对脚本的后续调用会输出所需的结果,但是,如果我在再次调用脚本之前等待几分钟,则会再次发生超时问题。
因此,重现"错误":
的步骤如果我调用任何其他脚本,即使在一段时间不活动之后立即响应,所以只有在涉及到cURL时才会发生此行为。
PHP - 5.2.17 CURL - libcurl / 7.16.0 OpenSSL / 0.9.8q zlib / 1.2.3 服务器运行带有IIS 8的Windows 2012,最新升级,在FastCGI上运行PHP。
有没有人知道如何解决这个问题?
感谢。
答案 0 :(得分:0)
尝试使用此处提供的ca-bundle.crt软件包https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt
上传文件
curl_setopt($ ch,CURLOPT_CAINFO,"路径");
参考:http://richardwarrender.com/2007/05/the-secret-to-curl-in-php-on-windows
希望这有帮助。