Home  >  Article  >  php教程  >  PHP CURL错误: error:140943FC,curl140943fc

PHP CURL错误: error:140943FC,curl140943fc

WBOY
WBOYOriginal
2016-06-13 08:54:58764browse

PHP CURL错误: error:140943FC,curl140943fc

使用PHP访问https网站的时候,间歇性会报error:140943FC错误。google之,通过如下方案可处理:

1、服务器ssl版本较高

curl_setopt($this->curl, CURLOPT_SSLVERSION, 4);

2、进程处理完毕之后关闭会话,不再缓存供重用

curl_setopt($this->curl, CURLOPT_FORBID_REUSE, TRUE);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn