diff --git a/reference/curl/functions/curl-setopt.xml b/reference/curl/functions/curl-setopt.xml index 6d8c6d7916..1363b0afa8 100644 --- a/reference/curl/functions/curl-setopt.xml +++ b/reference/curl/functions/curl-setopt.xml @@ -723,8 +723,16 @@ CURLOPT_SSLVERSION - The SSL version (2 or 3) to use. By default PHP will try to determine - this itself, although in some cases this must be set manually. + One of CURL_SSLVERSION_DEFAULT (0), + CURL_SSLVERSION_TLSv1 (1), + CURL_SSLVERSION_SSLv2 (2) or + CURL_SSLVERSION_SSLv3 (3). + + + Setting this to anything other than 0 or 1 is dangerous given + the known vulnerabilities in SSLv2 and SSLv3. + +