Home > Backend Development > PHP Tutorial > PHP CURL error: error:140943FC, curl140943fc_PHP tutorial

PHP CURL error: error:140943FC, curl140943fc_PHP tutorial

WBOY
Release: 2016-07-13 09:44:05
Original
1169 people have browsed it

PHP CURL error: error:140943FC, curl140943fc

When using PHP to access https websites, error: 140943FC error will be reported intermittently. According to Google, it can be processed through the following solutions:

1. The server SSL version is higher

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

2. After the process is completed, close the session and no longer cache it for reuse

curl_setopt($this->curl, CURLOPT_FORBID_REUSE, TRUE);
Copy after login

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1051222.htmlTechArticlePHP CURL error: error:140943FC, curl140943fc When using PHP to access https websites, error:140943FC will be reported intermittently. mistake. Google, it can be processed through the following solutions: 1. Server ss...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template