PHP curl error: “Unknown SSL protocol error in connection to…”

后端 未结 3 959
太阳男子
太阳男子 2021-01-13 01:19

I having extreme difficulty with PHP curl. I am attempting to open a site: https://www.novaprostaffing.com/np/index.jsp through PHP curl, but it keeps yielding the following

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-13 01:58

    Try setting the cURL option CURLOPT_SSLVERSION. I had the same problem a while ago, this did the trick for me :)

    curl_setopt($ch, CURLOPT_SSLVERSION, 3); // 1, 2 or 3
    

提交回复
热议问题