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
http://www.bkjia.com/PHPjc/1051222.htmlwww.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...