PHP 35: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure

后端 未结 3 1010
死守一世寂寞
死守一世寂寞 2020-12-18 07:05

cURL stopped working. I started to get this error (it used work fine till few hours ago).

I am using cURL extension for PHP. I found some solution for curl command l

3条回答
  •  囚心锁ツ
    2020-12-18 07:42

    I know it's a bit outdated problem, but I've got a solution for others:

    curl_setopt($ch, CURLOPT_SSLVERSION, 3);
    curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'SSLv3');
    

提交回复
热议问题