Home > php教程 > php手册 > body text

PHP CURL错误: error:140943FC,curl140943fc

WBOY
Release: 2016-06-13 08:54:58
Original
764 people have browsed it

PHP CURL错误: error:140943FC,curl140943fc

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

1、服务器ssl版本较高

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

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

curl_setopt($this->curl, CURLOPT_FORBID_REUSE, TRUE);
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!