Reputation: 100
Does anyone know the answer to this question? I read PHP cURL documentation but I could not find an answer. I have a bash script and I want to convert it to PHP. I just can't figure out what is the equivalent of
curl --tlsv1
Any suggestion is much appreciated.
Upvotes: 1
Views: 101
Reputation: 7783
You can use the CURLOPT_SSLVERSION
option, with the CURL_SSLVERSION_TLSv1
value.
See http://php.net/manual/en/function.curl-setopt.php for more information.
Upvotes: 2