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

后端 未结 3 1027
死守一世寂寞
死守一世寂寞 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:59

    I just change from

    curl_setopt($curl, CURLOPT_SSLVERSION, 3);

    to

    curl_setopt($curl, CURLOPT_SSLVERSION, 4);

提交回复
热议问题