The constants below are defined by this extension, and
will only be available when the extension has either
been compiled into PHP or dynamically loaded at runtime.
 
  
      
       | Constants | Description | 
  curl_setopt()
  
   | CURLOPT_ABSTRACT_UNIX_SOCKET(int) | 
     Enables the use of an abstract Unix domain socket instead of
     establishing a TCP connection to a host and sets the path to
     the given string. This option shares the same semantics
     as CURLOPT_UNIX_SOCKET_PATH. These two options
     share the same storage and therefore only one of them can be set
     per handle.
     Available as of PHP 7.3.0 and cURL 7.53.0. | 
  
   | CURLOPT_ACCEPT_ENCODING(int) | 
     Sets a string with the contents
     of the Accept-Encoding:header sent in an HTTP request.
     Set tonullto disable sending theAccept-Encoding:header.
     Defaults tonull.
     Available as of cURL 7.21.6. | 
  
   | CURLOPT_ACCEPTTIMEOUT_MS(int) | 
     The maximum number of milliseconds to wait for a server
     to connect back to cURL when an active FTP connection is used.
     This option accepts any value that can be cast to a valid int.
     Defaults to 60000milliseconds.
     Available as of cURL 7.24.0. | 
  
   | CURLOPT_ADDRESS_SCOPE(int) | 
     The scope id value to use when connecting to IPv6 addresses.
     This option accepts any value that can be cast to a valid int.
     Defaults to 0.
     Available as of cURL 7.19.0. | 
  
   | CURLOPT_ALTSVC(int) | 
     Pass a string with the filename for cURL to use as the Alt-Svc cache file to read existing cache contents from and
     possibly also write it back to a after a transfer, unless CURLALTSVC_READONLYFILEis set viaCURLOPT_ALTSVC_CTRL.
     Available as of PHP 8.2.0 and cURL 7.64.1. | 
  
   | CURLOPT_ALTSVC_CTRL(int) | 
     Populate the bitmask with the correct set of features to instruct cURL how to handle Alt-Svc for the
     transfers using this handle. cURL only accepts Alt-Svc headers over HTTPS. It will also only complete
     a request to an alternative origin if that origin is properly hosted over HTTPS.
     Setting any bit will enable the alt-svc engine.
     Set to any of the
     CURLALTSVC_*constants.
     Defaults to Alt-Svc handling being disabled.
     Available as of PHP 8.2.0 and cURL 7.64.1. | 
  
   | CURLOPT_APPEND(int) | 
     Setting this option to 1will cause FTP uploads
     to append to the remote file instead of overwriting it.
     Defaults to0.
     Available as of cURL 7.17.0. | 
  
   | CURLOPT_AUTOREFERER(int) | 
     trueto automatically set theReferer:field in
     requests where it follows aLocation:redirect.
     Defaults to0.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_AWS_SIGV4(int) | 
     Provides AWS V4 signature authentication on HTTP(S) header as a string.
     This option overrides any other authentication types that have been set in
     CURLOPT_HTTPAUTH. This method cannot be combined with other authentication types.
     Available as of PHP 8.2.0 and cURL 7.75.0. | 
  
   | CURLOPT_BINARYTRANSFER(int) | 
     This constant is no longer used as of PHP 5.5.0.
     Deprecated as of PHP 8.4.0.
     | 
  
   | CURLOPT_BUFFERSIZE(int) | 
     The size of the buffer to use for each read. There is no guarantee
     this request will be fulfilled, however.
     This option accepts any value that can be cast to a valid int.
     Defaults to CURL_MAX_WRITE_SIZE(currently, 16kB).
     Available as of cURL 7.10. | 
  
   | CURLOPT_CAINFO(int) | 
     A string with the name of a file holding one or more certificates to verify the
     peer with. This only makes sense when used in combination with
     CURLOPT_SSL_VERIFYPEER. Might require an absolute path.
     Available as of cURL 7.4.2. | 
  
   | CURLOPT_CAINFO_BLOB(int) | 
     A string with the name of a PEM file holding one or more certificates to verify the
     peer with. This option overrides CURLOPT_CAINFO.
     Available as of PHP 8.2.0 and cURL 7.77.0. | 
  
   | CURLOPT_CAPATH(int) | 
     A string with a directory that holds multiple CA certificates.
     Use this option alongside CURLOPT_SSL_VERIFYPEER.
     Available as of cURL 7.9.8. | 
  
   | CURLOPT_CA_CACHE_TIMEOUT(int) | 
     Sets the maximum time in seconds any in memory cached CA certificate store
     may be kept and reused for new connections.
     This option accepts any value that can be cast to a valid int.
     Defaults to 86400(24 hours).
     Available as of PHP 8.3.0 and cURL 7.87.0 | 
  
   | CURLOPT_CERTINFO(int) | 
     trueto output SSL certification information toSTDERRon secure transfers.
     RequiresCURLOPT_VERBOSEto be on to have an effect.
     Defaults tofalse.
     Available as of cURL 7.19.1. | 
  
   | CURLOPT_CONNECTTIMEOUT(int) | 
     The number of seconds to wait while trying to connect. Use 0 to
     wait indefinitely.
     This option accepts any value that can be cast to a valid int.
     Defaults to 300.
     Available as of cURL 7.7.0. | 
  
   | CURLOPT_CONNECTTIMEOUT_MS(int) | 
     The number of milliseconds to wait while trying to connect.
     Use 0to wait indefinitely.
     If cURL is built to use the standard system name resolver, that
     portion of the connect will still use full-second resolution for
     timeouts with a minimum timeout allowed of one second.
     This option accepts any value that can be cast to a valid int.
     Defaults to300000.
     Available as of cURL 7.16.2. | 
  
   | CURLOPT_CONNECT_ONLY(int) | 
     truetells the library to perform all the required proxy authentication
     and connection setup, but no data transfer. This option is implemented for
     HTTP, SMTP and POP3.
     Defaults tofalse.
     Available as of cURL 7.15.2. | 
  
   | CURLOPT_CONNECT_TO(int) | 
     Connect to a specific host and port instead of the URL's host and port.
     Accepts an array of strings with the format
     HOST:PORT:CONNECT-TO-HOST:CONNECT-TO-PORT.
     Available as of PHP 7.0.7 and cURL 7.49.0. | 
  
   | CURLOPT_COOKIE(int) | 
     A string with the contents of the Cookie: header to be used in the HTTP request.
     Note that multiple cookies are separated with a semicolon followed
     by a space (e.g.,fruit=apple; colour=red).
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_COOKIEFILE(int) | 
     A string with the name of the file containing the cookie data.
     The cookie file can be in Netscape format, or just plain HTTP-style headers dumped into a file.
     If the name is an empty string, no cookies are loaded, but cookie
     handling is still enabled.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_COOKIEJAR(int) | 
     A string with the name of a file to save all internal cookies to when
     the handle's destructor is called.
     Available as of cURL 7.9.0.
      Warning
      
       As of PHP 8.0.0, curl_close() is a no-op
       and does not destroy the handle.
       If cookies need to be written prior to the handle being automatically
       destroyed, run curl_setopt($ch, CURLOPT_COOKIELIST, "FLUSH");. | 
  
   | CURLOPT_COOKIELIST(int) | 
     A cookie string (i.e. a single line in Netscape/Mozilla format, or a regular
     HTTP-style Set-Cookie header) adds that single cookie to the internal cookie store.
     
       ALLerases all cookies held in memory
      ,SESSerases all session cookies held in memory
      ,FLUSHwrites all known cookies to the file specified byCURLOPT_COOKIEJAR,RELOADloads all cookies from the files specified byCURLOPT_COOKIEFILE.
     Available as of cURL 7.14.1. | 
  
   | CURLOPT_COOKIESESSION(int) | 
     trueto mark this as a new cookie "session". It will force cURL
     to ignore all cookies it is about to load that are "session cookies"
     from the previous session. By default, cURL always stores and
     loads all cookies, independent if they are session cookies or not.
     Session cookies are cookies without expiry date and they are meant
     to be alive and existing for this "session" only.
     Available as of cURL 7.9.7. | 
  
   | CURLOPT_CRLF(int) | 
     trueto convert Unix newlines to CRLF newlines
     on transfers.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_CRLFILE(int) | 
     Pass a string naming a file with the concatenation of
     CRL (Certificate Revocation List) (in PEM format)
     to use in the certificate validation that occurs during the SSL exchange.
     When cURL is built to use GnuTLS,
     there is no way to influence the use of CRL passed
     to help in the verification process.
     When cURL is built with OpenSSL support,
     X509_V_FLAG_CRL_CHECKandX509_V_FLAG_CRL_CHECK_ALLare both set,
     requiring CRL check against all the elements of the certificate chain
     if a CRL file is passed.
     Also note thatCURLOPT_CRLFILEimpliesCURLSSLOPT_NO_PARTIALCHAINas of cURL 7.71.0 due to an OpenSSL bug.
     Available as of cURL 7.19.0. | 
  
   | CURLOPT_CUSTOMREQUEST(int) | 
     A custom request method to use instead of
     GETorHEADwhen doing
     a HTTP request. This is useful for doingDELETEor other, more obscure HTTP requests.
     Valid values are things likeGET,POST,CONNECTand so on;
     i.e. Do not enter a whole HTTP request line here. For instance,
     enteringGET /index.html HTTP/1.0\r\n\r\nwould be incorrect.
     This option accepts a string ornull.
     Available as of cURL 7.1.0. Note: 
       
       Don't do this without making sure the server supports the custom
       request method first.
      
 | 
  
   | CURLOPT_DEFAULT_PROTOCOL(int) | 
     A string with the default protocol to use if the URL is missing a scheme name.
     Available as of PHP 7.0.7 and cURL 7.45.0.
     | 
  
   | CURLOPT_DIRLISTONLY(int) | 
     Setting this option to 1will have different effects
     based on the protocol it is used with.
     FTP and SFTP based URLs will list only the names of files in a directory.
     POP3 will list the email message or messages on the POP3 server.
     For FILE, this option has no effect
     as directories are always listed in this mode.
     Using this option withCURLOPT_WILDCARDMATCHwill prevent the latter from having any effect.
     Defaults to0.
     Available as of cURL 7.17.0. | 
  
   | CURLOPT_DISALLOW_USERNAME_IN_URL(int) | 
     trueto not allow URLs that include a username.
     Usernames are allowed by default.
     Available as of PHP 7.3.0 and cURL 7.61.0. | 
  
   | CURLOPT_DNS_CACHE_TIMEOUT(int) | 
     The number of seconds to keep DNS entries in memory. This
     option is set to 120(2 minutes) by default.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.9.3. | 
  
   | CURLOPT_DNS_INTERFACE(int) | 
     Set the name of the network interface that the DNS resolver should bind to.
     This must be an interface name (not an address).
     This option accepts a string or null.
     Available as of PHP 7.0.7 and cURL 7.33.0 | 
  
   | CURLOPT_DNS_LOCAL_IP4(int) | 
     Set the local IPv4 address that the resolver should bind to.
     The argument should contain a single numerical IPv4 address.
     This option accepts a string or null.
     Available as of PHP 7.0.7 and cURL 7.33.0. | 
  
   | CURLOPT_DNS_LOCAL_IP6(int) | 
     Set the local IPv6 address that the resolver should bind to.
     The argument should contain a single numerical IPv6 address.
     This option accepts a string or null.
     Available as of PHP 7.0.7 and cURL 7.33.0. | 
  
   | CURLOPT_DNS_SERVERS(int) | 
     Pass a string with a comma-separated list of DNS servers to be used
     instead of the system default
     (e.g.: 192.168.1.100,192.168.1.101:8080).
     Available as of cURL 7.24.0. | 
  
   | CURLOPT_DNS_SHUFFLE_ADDRESSES(int) | 
     trueto shuffle the order of all returned addresses so that they will be used
     in a random order, when a name is resolved and more than one IP address is returned.
     This may cause IPv4 to be used before IPv6 or vice versa.
     Available as of PHP 7.3.0 and cURL 7.60.0. | 
  
   | CURLOPT_DNS_USE_GLOBAL_CACHE(int) | 
     trueto use a global DNS cache. This option is not thread-safe.
     It is conditionally enabled by default if PHP is built for non-threaded use
     (CLI, FCGI, Apache2-Prefork, etc.).
     Available as of cURL 7.9.3 and deprecated as of cURL 7.11.1.
     As of PHP 8.4, this option no longer has any effect. | 
  
   | CURLOPT_DOH_SSL_VERIFYHOST(int) | 
     Set to 2to verify the DNS-over-HTTPS server's SSL certificate name fields against the host name.
     Available as of PHP 8.2.0 and cURL 7.76.0. | 
  
   | CURLOPT_DOH_SSL_VERIFYPEER(int) | 
     Set to 1to enable and0to disable
     verification of the authenticity of the DNS-over-HTTPS server's SSL certificate.
     Available as of PHP 8.2.0 and cURL 7.76.0. | 
  
   | CURLOPT_DOH_SSL_VERIFYSTATUS(int) | 
     Set to 1to enable and0to disable
     the verification of the status of the DNS-over-HTTPS server certificate
     using the "Certificate Status Request" TLS extension (OCSP stapling).
     Available as of PHP 8.2.0 and cURL 7.76.0. | 
  
   | CURLOPT_DOH_URL(int) | 
     Provides the DNS-over-HTTPS URL.
     This option accepts a string or null.
     Available as of PHP 8.1.0 and cURL 7.62.0. | 
  
   | CURLOPT_EGDSOCKET(int) | 
     Like CURLOPT_RANDOM_FILE, except a filename
     to an Entropy Gathering Daemon socket.
     Available as of cURL 7.7.0 and deprecated as of cURL 7.84.0. | 
  
   | CURLOPT_ENCODING(int) | 
     The contents of the Accept-Encoding: header as a string.
     This enables decoding of the response. Supported encodings are:identity,deflate,gzip.
     If an empty string is set,
     a header containing all supported encoding types is sent.
     Available as of cURL 7.10 and deprecated as of cURL 7.21.6. | 
  
   | CURLOPT_EXPECT_100_TIMEOUT_MS(int) | 
     The timeout for Expect: 100-continueresponses in milliseconds.
     Defaults to1000milliseconds.
     This option accepts any value that can be cast to a valid int.
     Available as of PHP 7.0.7 and cURL 7.36.0. | 
  
   | CURLOPT_FAILONERROR(int) | 
     trueto fail verbosely if the HTTP code returned
     is greater than or equal to400. The default behavior is to return
     the page normally, ignoring the code.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_FILE(int) | 
     Accepts a file handle resource
     to the file that the transfer should be written to.
     The default is STDOUT(the browser window).
     Available as of cURL 7.1.0 and deprecated as of cURL 7.9.7. | 
  
   | CURLOPT_FILETIME(int) | 
     Set to trueto attempt to retrieve the modification
     date of the remote document. This value can be retrieved using
     theCURLINFO_FILETIMEoption with
     curl_getinfo().
     Available as of cURL 7.5.0. | 
  
   | CURLOPT_FNMATCH_FUNCTION(int) | 
     Pass a callable that will be used for wildcard matching.
     The signature of the callback should be:
      
      
       The callback should returncurlHandle
        
         The cURL handle.
        
       pattern
        
         The wildcard pattern.
        
       string
        
         The string to run the wildcard pattern matching on.
        
        CURL_FNMATCHFUNC_MATCHif pattern matches the string,CURL_FNMATCHFUNC_NOMATCHif not
     orCURL_FNMATCHFUNC_FAILif an error occurred.
     Available as of cURL 7.21.0. | 
  
   | CURLOPT_FOLLOWLOCATION(int) | 
     Set to trueto follow anyLocation: header that the server sends as
     part of the HTTP header.
     See alsoCURLOPT_MAXREDIRS.
     This constant is not available when open_basedir
     is enabled.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_FORBID_REUSE(int) | 
     Set to trueto force the connection to explicitly
     close when it has finished processing, and not be pooled for reuse.
     Available as of cURL 7.7.0. | 
  
   | CURLOPT_FRESH_CONNECT(int) | 
     Set to trueto force the use of a new connection
     instead of a cached one.
     Available as of cURL 7.7.0. | 
  
   | CURLOPT_FTPAPPEND(int) | 
     Set to trueto append to the remote file instead of
     overwriting it.
     Available as of cURL 7.1.0 and deprecated as of cURL 7.16.4. | 
  
   | CURLOPT_FTPASCII(int) | 
     An alias of
     CURLOPT_TRANSFERTEXT. Use that instead.
     Available as of cURL 7.1, deprecated as of cURL 7.11.1
     and last available in cURL 7.15.5.
     Removed as of PHP 7.3.0. | 
  
   | CURLOPT_FTPLISTONLY(int) | 
     Set to trueto only list the names of an FTP directory.
     Available as of cURL 7.1.0 and deprecated as of cURL 7.16.4. | 
  
   | CURLOPT_FTPPORT(int) | 
     A string which will be used to get the IP address to use for the FTP PORTinstruction. ThePORTinstruction tells
     the remote server to connect to our specified IP address.  The
     string may be a plain IP address, a hostname,
     a network interface name (under Unix),
     or just a plain-to use the system's default IP address.
     This option accepts a string ornull.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_FTPSSLAUTH(int) | 
     Set the FTP over SSL authentication method (if activated) to any of the
     CURLFTPAUTH_*constants.
     Defaults toCURLFTPAUTH_DEFAULT.
     Available as of cURL 7.12.2. | 
  
   | CURLOPT_FTP_ACCOUNT(int) | 
     Pass a string that will be sent as account information over FTP
     (using the ACCTcommand) after username and password has been provided
     to the server.
     Set tonullto disable sending the account information.
     Defaults tonull.
     Available as of cURL 7.13.0. | 
  
   | CURLOPT_FTP_ALTERNATIVE_TO_USER(int) | 
     Pass a string that will be used to try to authenticate over FTP
     if the USER/PASSnegotiation fails.
     Available as of cURL 7.15.5. | 
  
   | CURLOPT_FTP_CREATE_MISSING_DIRS(int) | 
     Set to trueto create missing directories when an FTP operation
     encounters a path that currently doesn't exist.
     Available as of cURL 7.10.7. | 
  
   | CURLOPT_FTP_FILEMETHOD(int) | 
     Tell cURL which method to use to reach a file on a FTP(S) server. Possible values are
     any of the CURLFTPMETHOD_*constants.
     Defaults toCURLFTPMETHOD_MULTICWD.
     Available as of cURL 7.15.1. | 
  
   | CURLOPT_FTP_RESPONSE_TIMEOUT(int) | 
     A timeout in seconds cURL will wait for a response from an FTP server.
     This option overrides CURLOPT_TIMEOUT.
     This option accepts any value that can be cast to a valid int.
     This option name is replaced withCURLOPT_SERVER_RESPONSE_TIMEOUT,
     available as of PHP 8.4.0.
     Available as of cURL 7.10.8 and deprecated as of cURL 7.85.0. | 
  
   | CURLOPT_FTP_SKIP_PASV_IP(int) | 
     If this option is set to 1cURL will not use the IP address the server suggests
     in its 227-response to cURL'sPASVcommand
     but will use the IP address it used for the connection.
     The port number received from the 227-response will not be ignored by cURL.
     Defaults to1as of cURL 7.74.0
     and0prior to that.
     Available as of cURL 7.15.0. | 
  
   | CURLOPT_FTP_SSL(int) | 
     Available as of cURL 7.11.0 and deprecated as of cURL 7.16.4.
     | 
  
   | CURLOPT_FTP_SSL_CCC(int) | 
     This option makes cURL use CCC (Clear Command Channel)
     which shuts down the SSL/TLS layer after authenticating
     making the rest of the control channel communication unencrypted.
     Use one of the CURLFTPSSL_CCC_*constants.
     Defaults toCURLFTPSSL_CCC_NONE.
     Available as of cURL 7.16.1. | 
  
   | CURLOPT_FTP_USE_EPRT(int) | 
     Set to trueto useEPRT(andLPRT) when doing active FTP downloads.
     Set tofalseto disableEPRTandLPRTand usePORTonly.
     Available as of cURL 7.10.5. | 
  
   | CURLOPT_FTP_USE_EPSV(int) | 
     Set to trueto first try anEPSVcommand for FTP transfers before reverting back toPASV.
     Set tofalseto disableEPSV.
     Available as of cURL 7.9.2. | 
  
   | CURLOPT_FTP_USE_PRET(int) | 
     Set to 1to send aPRETcommand
     beforePASV(andEPSV).
     Has no effect when using the active FTP transfers mode.
     Defaults to0.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_GSSAPI_DELEGATION(int) | 
     Set to CURLGSSAPI_DELEGATION_FLAGto allow unconditional GSSAPI credential delegation.
     Set toCURLGSSAPI_DELEGATION_POLICY_FLAGto delegate only if theOK-AS-DELEGATEflag is set
     in the service ticket.
     Defaults toCURLGSSAPI_DELEGATION_NONE.
     Available as of cURL 7.22.0. | 
  
   | CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS(int) | 
     Head start for IPv6 for the happy eyeballs algorithm. Happy eyeballs attempts
     to connect to both IPv4 and IPv6 addresses for dual-stack hosts,
     preferring IPv6 first for timeout milliseconds.
     Defaults to CURL_HET_DEFAULT, which is currently 200 milliseconds.
     This option accepts any value that can be cast to a valid int.
     Available as of PHP 7.3.0 and cURL 7.59.0 | 
  
   | CURLOPT_HAPROXYPROTOCOL(int) | 
     trueto send an HAProxyPROXYprotocol v1 header at the start of the connection.
     The default action is not to send this header.
     Available as of PHP 7.3.0 and cURL 7.60.0. | 
  
   
   | 
     Set to trueto include the headers in the output sent to the callback
     defined byCURLOPT_WRITEFUNCTION.
     Available as of cURL 7.1.0. | 
  
   
   | 
     A callable with the following signature:
      
      
       The callback should return the number of bytes written.
     Available as of cURL 7.7.2.curlHandle
        
         The cURL handle.
        
       headerData
        
         The header data which must be written by the callback.
        
        | 
  
   
   | 
     Send HTTP headers to both proxy and host or separately.
     Possible values are any of the
     CURLHEADER_*constants.
     Defaults toCURLHEADER_SEPARATEas of cURL
     7.42.1, andCURLHEADER_UNIFIEDprior to that.
     Available as of PHP 7.0.7 and cURL 7.37.0. | 
  
   | CURLOPT_HSTS(int) | 
     string with HSTS (HTTP Strict Transport Security) cache file name
     or nullto allow HSTS without reading from or writing to any file
     and clear the list of files to read HSTS data from.
     Available as of PHP 8.2.0 and cURL 7.74.0. | 
  
   | CURLOPT_HSTS_CTRL(int) | 
     Accepts a bitmask of HSTS (HTTP Strict Transport Security) features
     defined by the CURLHSTS_*constants.
     Available as of PHP 8.2.0 and cURL 7.74.0. | 
  
   | CURLOPT_HTTP09_ALLOWED(int) | 
     Whether to allow HTTP/0.9 responses. Defaults to falseas of cURL 7.66.0;
     formerly it defaulted totrue.
     Available as of PHP 7.3.15 and 7.4.3, respectively, and cURL 7.64.0. | 
  
   | CURLOPT_HTTP200ALIASES(int) | 
     An array of HTTP 200responses that will be treated as valid responses and not as errors.
     Available as of cURL 7.10.3. | 
  
   | CURLOPT_HTTPAUTH(int) | 
     A bitmask of HTTP authentication method(s) to use. The options are:
     CURLAUTH_BASIC,CURLAUTH_DIGEST,CURLAUTH_GSSNEGOTIATE,CURLAUTH_NTLM,CURLAUTH_AWS_SIGV4,CURLAUTH_ANY,CURLAUTH_ANYSAFE.
     If more than one method is used, cURL will poll the server to see
     what methods it supports and pick the best one.CURLAUTH_ANYsets all bits. cURL will automatically select
     the one it finds most secure.CURLAUTH_ANYSAFEsets all bits exceptCURLAUTH_BASIC.
     cURL will automatically select the one it finds most secure.
     Available as of cURL 7.10.6. | 
  
   | CURLOPT_HTTPGET(int) | 
     Set to trueto reset the HTTP request method toGET. SinceGETis the default, this is only necessary if the request
     method has been changed.
     Available as of cURL 7.8.1. | 
  
   
   | 
     An array of HTTP header fields to set, in the format
     
      array('Content-type: text/plain', 'Content-length: 100')
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_HTTPPROXYTUNNEL(int) | 
     trueto tunnel through a given HTTP proxy.
     Available as of cURL 7.3.0. | 
  
   | CURLOPT_HTTP_CONTENT_DECODING(int) | 
     falseto get the raw HTTP response body.
     Available as of cURL 7.16.2. | 
  
   | CURLOPT_HTTP_TRANSFER_DECODING(int) | 
     If set to 0, transfer decoding is disabled.
     If set to1, transfer decoding is enabled.
     cURL does chunked transfer decoding by default
     unless this option is set to0.
     Defaults to1.
     Available as of cURL 7.16.2. | 
  
   | CURLOPT_HTTP_VERSION(int) | 
     Set to one of the
     CURL_HTTP_VERSION_*constants
     for cURL to use the specified HTTP version.
     Available as of cURL 7.9.1. | 
  
   | CURLOPT_IGNORE_CONTENT_LENGTH(int) | 
     If set to 1,
     ignore theContent-Lengthheader in the HTTP response
     and ignore asking for or relying on it for FTP transfers.
     Defaults to0.
     Available as of cURL 7.14.1. | 
  
   | CURLOPT_INFILE(int) | 
     Accepts a file handle resource
     to the file that the transfer should be read from when uploading.
     Available as of cURL 7.1.0 and deprecated as of cURL 7.9.7.
     Use CURLOPT_READDATAinstead. | 
  
   | CURLOPT_INFILESIZE(int) | 
     The expected size, in bytes, of the file when uploading a file to
     a remote site. Note that using this option will not stop cURL
     from sending more data, as exactly what is sent depends on
     CURLOPT_READFUNCTION.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_INTERFACE(int) | 
     Set to a string with the name of the outgoing network interface to use.
     This can be an interface name, an IP address or a host name.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_IPRESOLVE(int) | 
     Allows an application to select what kind of IP addresses to use when
     resolving host names. This is only interesting when using host names that
     resolve addresses using more than one version of IP.
     Set to one of the
     CURL_IPRESOLVE_*constants.
     Defaults toCURL_IPRESOLVE_WHATEVER.
     Available as of cURL 7.10.8. | 
  
   | CURLOPT_ISSUERCERT(int) | 
     If set to a string naming a file holding a CA certificate in PEM format,
     an additional check against the peer certificate is performed
     to verify the issuer is indeed the one associated
     with the certificate provided by the option.
     For the result of the check to be considered a failure,
     this option should be used in combination with the
     CURLOPT_SSL_VERIFYPEERoption.
     Available as of cURL 7.19.0. | 
  
   | CURLOPT_ISSUERCERT_BLOB(int) | 
     Pass a string with binary data of a CA SSL certificate in PEM format.
     If set, an additional check against the peer certificate is performed
     to verify the issuer is the one associated with the certificate provided by the option.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_KEEP_SENDING_ON_ERROR(int) | 
     Set to trueto keep sending the request body if the HTTP code returned is equal to or larger than300.
     The default action would be to stop sending
     and close the stream or connection. Suitable for manual NTLM authentication.
     Most applications do not need this option.
     Available as of PHP 7.3.0 and cURL 7.51.0. | 
  
   | CURLOPT_KEYPASSWD(int) | 
     Set to a string with the password required to use the CURLOPT_SSLKEYorCURLOPT_SSH_PRIVATE_KEYFILEprivate key.
     Setting this option tonulldisables using a password for these options.
     Available as of cURL 7.17.0. | 
  
   | CURLOPT_KRB4LEVEL(int) | 
     The KRB4 (Kerberos 4) security level. Any of the following string values
     (in order from least to most powerful) are valid:
     clear,safe,confidential,private.
     If the string does not match one of these,privateis used. Setting this option tonullwill disable KRB4 security. Currently KRB4 security only works
     with FTP transactions.
     Available as of cURL 7.3.0 and deprecated as of cURL 7.17.0. | 
  
   | CURLOPT_KRBLEVEL(int) | 
     Set the kerberos security level for FTP and also enables kerberos awareness.
     This should be set to one of the following strings:
     clear,safe,confidential,private.
     If the string is set but does not match one of these,privateis used.
     Setting this option tonullwill disable kerberos support for FTP.
     Defaults tonull.
     Available as of cURL 7.16.4. | 
  
   | CURLOPT_LOCALPORT(int) | 
     Sets the local port number of the socket used for the connection.
     This option accepts any value that can be cast to a valid int.
     Defaults to 0.
     Available as of cURL 7.15.2. | 
  
   | CURLOPT_LOCALPORTRANGE(int) | 
     The number of attempts cURL makes to find a working local port number,
     starting with the one set with CURLOPT_LOCALPORT.
     This option accepts any value that can be cast to a valid int.
     Defaults to1.
     Available as of cURL 7.15.2. | 
  
   | CURLOPT_LOGIN_OPTIONS(int) | 
     Can be used to set protocol specific login options, such as the
     preferred authentication mechanism via AUTH=NTLMorAUTH=*, and should be used in conjunction with theCURLOPT_USERNAMEoption.
     Available as of PHP 7.0.7 and cURL 7.34.0. | 
  
   | CURLOPT_LOW_SPEED_LIMIT(int) | 
     The transfer speed, in bytes per second, that the transfer should be
     below during the count of CURLOPT_LOW_SPEED_TIMEseconds before PHP considers the transfer too slow and aborts.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_LOW_SPEED_TIME(int) | 
     The number of seconds the transfer speed should be below
     CURLOPT_LOW_SPEED_LIMITbefore PHP considers
     the transfer too slow and aborts.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_MAIL_AUTH(int) | 
     Set a string with the authentication address (identity)
     of a submitted message that is being relayed to another server.
     The address should not be specified within a pair of angled brackets
     (><).
     If an empty string is used then a pair of brackets are sent by cURL
     as required by RFC 2554.
     Available as of cURL 7.25.0. | 
  
   | CURLOPT_MAIL_FROM(int) | 
     Set a string with the sender's email address when sending SMTP mail.
     The email address should be specified with angled brackets
     (><) around it,
     which if not specified are added automatically.
     If this parameter is not specified then an empty address is sent
     to the SMTP server which might cause the email to be rejected.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_MAIL_RCPT(int) | 
     Set to an array of strings
     with the recipients to pass to the server in an SMTP mail request.
     Each recipient should be specified within a pair of angled brackets
     (><).
     If an angled bracket is not used as the first character,
     cURL assumes a single email address has been provided
     and encloses that address within brackets.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_MAIL_RCPT_ALLLOWFAILS(int) | 
     Set to 1to allowRCPT TOcommand
     to fail for some recipients which makes cURL ignore errors
     for individual recipients and proceed with the remaining accepted recipients.
     If all recipients trigger failures and this flag is specified,
     cURL aborts the SMTP conversation
     and returns the error received from to the lastRCPT TOcommand.
     Replaced byCURLOPT_MAIL_RCPT_ALLOWFAILSas of cURL 8.2.0.
     Available as of PHP 8.2.0 and cURL 7.69.0.
     Deprecated as of cURL 8.2.0. | 
  
   | CURLOPT_MAXAGE_CONN(int) | 
     The maximum idle time allowed for an existing connection to be considered for reuse.
     Default maximum age is set to 118seconds.
     This option accepts any value that can be cast to a valid int.
     Available as of PHP 8.2.0 and cURL 7.65.0. | 
  
   | CURLOPT_MAXCONNECTS(int) | 
     The maximum amount of persistent connections that are allowed.
     When the limit is reached, the oldest one in the cache is closed
     to prevent increasing the number of open connections.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.7.0.
     | 
  
   | CURLOPT_MAXFILESIZE(int) | 
     Sets the maximum accepted size (in bytes) of a file to download.
     If the file requested is found larger than this value,
     the transfer is aborted
     and CURLE_FILESIZE_EXCEEDEDis returned.
     Passing0disables this option,
     and passing a negative size returns aCURLE_BAD_FUNCTION_ARGUMENT.
     If the file size is not known prior to the start of download,
     this option has no effect.
     For setting a size limit above2GB,CURLOPT_MAXFILESIZE_LARGEshould be used.
     As of cURL 8.4.0, this option also stops ongoing transfers
     if they reach this threshold.
     This option accepts any value that can be cast to a valid int.
     Defaults to0.
     Available as of cURL 7.10.8. | 
  
   | CURLOPT_MAXFILESIZE_LARGE(int) | 
     The maximum file size in bytes allowed to download. If the file requested is found larger than this value,
     the transfer will not start and CURLE_FILESIZE_EXCEEDEDwill be returned.
     The file size is not always known prior to download, and for such files this option has no effect even if
     the file transfer ends up being larger than this given limit.
     This option accepts any value that can be cast to a valid int.
     Available as of PHP 8.2.0 and cURL 7.11.0. | 
  
   | CURLOPT_MAXLIFETIME_CONN(int) | 
     The maximum time in seconds, since the creation of the connection, that is allowed for an existing
     connection to have for it to be considered for reuse. If a connection is found in the cache that is older
     than this value, it will instead be closed once any in-progress transfers are complete.
     Default is 0seconds, meaning the option is disabled and all connections are eligible for reuse.
     This option accepts any value that can be cast to a valid int.
     Available as of PHP 8.2.0 and cURL 7.80.0. | 
  
   | CURLOPT_MAXREDIRS(int) | 
     The maximum amount of HTTP redirections to follow. Use this option alongside CURLOPT_FOLLOWLOCATION.
     Default value of20is set to prevent infinite redirects.
     Setting to-1allows inifinite redirects, and0refuses all redirects.
     Available as of cURL 7.5.0. | 
  
   | CURLOPT_MAX_RECV_SPEED_LARGE(int) | 
     If a download exceeds this speed (counted in bytes per second) on
     cumulative average during the transfer, the transfer will pause to
     keep the average rate less than or equal to the parameter value.
     Defaults to unlimited speed.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.15.5.
     | 
  
   | CURLOPT_MAX_SEND_SPEED_LARGE(int) | 
     If an upload exceeds this speed (counted in bytes per second) on
     cumulative average during the transfer, the transfer will pause to
     keep the average rate less than or equal to the parameter value.
     Defaults to unlimited speed.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.15.5.
     | 
  
   | CURLOPT_MIME_OPTIONS(int) | 
     Set to a bitmask of CURLMIMEOPT_*constants. Currently there is only one available option:CURLMIMEOPT_FORMESCAPE.
     Available as of PHP 8.3.0 and cURL 7.81.0. | 
  
   | CURLOPT_MUTE(int) | 
     Set to trueto be completely silent with regards to
     the cURL functions.
     UseCURLOPT_RETURNTRANSFERinstead.
     Available as of cURL 7.1.0, deprecated as of cURL 7.8.0
     and last available in cURL 7.15.5.
     Removed as of PHP 7.3.0. | 
  
   | CURLOPT_NETRC(int) | 
     Set to trueto scan the ~/.netrc
     file to find a username and password for the remote site that
     a connection is being established with.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_NETRC_FILE(int) | 
     Set a string containing the full path name to a .netrcfile.
     If this option is omitted andCURLOPT_NETRCis set,
     cURL checks for a.netrcfile
     in the current user's home directory.
     Available as of cURL 7.11.0. | 
  
   | CURLOPT_NEW_DIRECTORY_PERMS(int) | 
     Sets the value of the permissions (int) that is set on newly created directories
     on the remote server. The default value is 0755.
     The only protocols that can use this aresftp://,scp://andfile://.
     Available as of cURL 7.16.4. | 
  
   | CURLOPT_NEW_FILE_PERMS(int) | 
     Sets the value of the permissions (as an int) that are set on newly created files
     on the remote server. The default value is 0644.
     The only protocols that can use this aresftp://,scp://andfile://.
     Available as of cURL 7.16.4. | 
  
   | CURLOPT_NOBODY(int) | 
     Set to trueto exclude the body from the output.
     For HTTP(S), cURL makes a HEAD request. For most other protocols,
     cURL is not asking for the body data at all.
     Changing this tofalsewill result in body data being included in the output.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_NOPROGRESS(int) | 
     Set to trueto disable the progress meter for cURL transfers. Available as of cURL 7.1.0.Note: 
       
       PHP automatically sets this option to true, this should only be
       changed for debugging purposes.
 | 
  
   | CURLOPT_NOPROXY(int) | 
     Set a string consisting of a comma separated list of hostnames
     that do not require a proxy to get reached.
     Each name in this list is matched as either a domain
     which contains the hostname or the hostname itself.
     The only wildcard available in the string
     is a single *character which matches all hosts,
     effectively disabling the proxy.
     Setting this option to an empty string enables the proxy for all hostnames.
     Since cURL 7.86.0, IP addresses set with this option
     can be provided using CIDR notation.
     Available as of cURL 7.19.4. | 
  
   | CURLOPT_NOSIGNAL(int) | 
     trueto ignore any cURL function that causes a
     signal to be sent to the PHP process. This is turned on by default
     in multi-threaded SAPIs so timeout options can still be used.
     Available as of cURL 7.10. | 
  
   | CURLOPT_PASSWDFUNCTION(int) | 
     A callable with the following signature:
      
      
       The callback should return a string containing the password.
     Available as of cURL 7.4.2, deprecated as of cURL 7.11.1
     and last available in cURL 7.15.5.
     Removed as of PHP 7.3.0.curlHandle
        
         The cURL handle.
        
       passwordPrompt
        
         A password prompt.
        
       maximumPasswordLength
        
         The maximum length of the password.
        
        | 
  
   | CURLOPT_PASSWORD(int) | 
     Set to a string with the password to use in authentication.
     Available as of cURL 7.19.1.
     | 
  
   | CURLOPT_PATH_AS_IS(int) | 
     Set to truefor cURL not alter URL paths before passing them on to the server.
     Defaults tofalse, which squashes sequences of/../or/./that may exist in the URL's path part
     which is supposed to be removed according to RFC 3986 section 5.2.4.
     Available as of PHP 7.0.7 and cURL 7.42.0. | 
  
   | CURLOPT_PINNEDPUBLICKEY(int) | 
     Set a string with the pinned public key.
     The string can be the file name of the pinned public key
     in a PEM or DER file format. The string can also be any
     number of base64 encoded sha256 hashes preceded by sha256//and
     separated by;.
     Available as of PHP 7.0.7 and cURL 7.39.0. | 
  
   | CURLOPT_PIPEWAIT(int) | 
     Set to trueto wait for an existing connection to confirm
     whether it can do multiplexing and use it if it can
     before creating and using a new connection.
     Available as of PHP 7.0.7 and cURL 7.43.0. | 
  
   | CURLOPT_PORT(int) | 
     An int with an alternative port number to connect to
     instead of the one specified in the URL or the default port for the used protocol.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_POST(int) | 
     Set to trueto do a HTTPPOSTrequest.
     This request uses theapplication/x-www-form-urlencodedheader.
     Defaults tofalse.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_POSTFIELDS(int) | 
     The full data to post in a HTTP POSToperation.
     This parameter can either be
     passed as a urlencoded string like 'para1=val1¶2=val2&...'
     or as an array with the field name as key and field data as value.
     Ifvalueis an array, theContent-Typeheader will be set tomultipart/form-data.
     Files can be sent using CURLFile or CURLStringFile,
     in which casevaluemust be an array.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_POSTQUOTE(int) | 
     An array of FTP command strings
     to execute on the server after the FTP request has been performed.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_POSTREDIR(int) | 
     Set to a bitmask of CURL_REDIR_POST_301,CURL_REDIR_POST_302andCURL_REDIR_POST_303if the HTTPPOSTmethod should be maintained
     whenCURLOPT_FOLLOWLOCATIONis set and a
     specific type of redirect occurs.
     Available as of cURL 7.19.1. | 
  
   | CURLOPT_PRE_PROXY(int) | 
     Set a string holding the host name or dotted numerical
     IP address to be used as the preproxy that cURL connects to before
     it connects to the HTTP(S) proxy specified in the
     CURLOPT_PROXYoption for the upcoming request.
     The preproxy can only be a SOCKS proxy and it should be prefixed with[scheme]://to specify which kind of socks is used.
     A numerical IPv6 address must be written within [brackets].
     Setting the preproxy to an empty string explicitly disables the use of a preproxy.
     To specify port number in this string, append:[port]to the end of the host name. The proxy's port number may optionally be
     specified with the separate optionCURLOPT_PROXYPORT.
     Defaults to using port 1080 for proxies if a port is not specified.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PREQUOTE(int) | 
     Set an array of FTP command strings to pass to the server
     after the transfer type is set.
     These commands are not performed when a directory listing is performed,
     only for file transfers.
     Available as of cURL 7.9.5.
     | 
  
   | CURLOPT_PRIVATE(int) | 
     Any data that should be associated with this cURL handle. This data
     can subsequently be retrieved with the
     CURLINFO_PRIVATEoption of
     curl_getinfo(). cURL does nothing with this data.
     When using a cURL multi handle, this private data is typically a
     unique key to identify a standard cURL handle.
     Available as of cURL 7.10.3. | 
  
   | CURLOPT_PROGRESSFUNCTION(int) | 
     A callable with the following signature:
      
      callback(    resource $curlHandle,    int $bytesToDownload,    int $bytesDownloaded,    int $bytesToUpload,    int $bytesUploaded): int 
      
       The callback should return an int with a non-zero value to abort the transfer
     and set acurlHandle
        
         The cURL handle.
        
       bytesToDownload
        
         The total number of bytes expected to be downloaded in this transfer.
        
       bytesDownloaded
        
         The number of bytes downloaded so far.
        
       bytesToUpload
        
         The total number of bytes expected to be uploaded in this transfer.
        
       bytesUploaded
        
         The number of bytes uploaded so far.
        
        CURLE_ABORTED_BY_CALLBACKerror.Available as of cURL 7.1.0 and deprecated as of cURL 7.32.0.
     UseNote: 
       
       The callback is only called when the CURLOPT_NOPROGRESSoption is set tofalse.
 CURLOPT_XFERINFOFUNCTIONinstead. | 
  
   | CURLOPT_PROTOCOLS(int) | 
     Bitmask of CURLPROTO_*values.
     If used, this bitmask limits what protocols cURL may use in the transfer.
     Defaults toCURLPROTO_ALL, ie. cURL will accept all protocols it supports.
     See alsoCURLOPT_REDIR_PROTOCOLS.
     Available as of cURL 7.19.4 and deprecated as of cURL 7.85.0. | 
  
   | CURLOPT_PROTOCOLS_STR(int) | 
     Set to a string with a comma separated list
     of case insensitive protocol names (URL schemes) to allow in the transfer.
     Set to ALLto enable all protocols.
     By default, cURL accepts all protocols it was built with support for.
     Available protocols are:DICT,FILE,FTP,FTPS,GOPHER,GOPHERS,HTTP,HTTPS,IMAP,IMAPS,LDAP,LDAPS,MQTT,POP3,POP3S,RTMP,RTMPE,RTMPS,RTMPT,RTMPTE,RTMPTS,RTSP,SCP,SFTP,SMB,SMBS,SMTP,SMTPS,TELNET,TFTP,WS,WSS.
     Available as of PHP 8.3.0 and cURL 7.85.0. | 
  
   | CURLOPT_PROXY(int) | 
     A string with the HTTP proxy to tunnel requests through.
     This should be the hostname, the dotted numerical IP address
     or a numerical IPv6 address written within [brackets].
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_PROXYAUTH(int) | 
     A bitmask of the HTTP authentication method(s)
     (CURLAUTH_*constants)
     to use for the proxy connection.
     For proxy authentication, onlyCURLAUTH_BASICandCURLAUTH_NTLMare currently supported.
     Defaults toCURLAUTH_BASIC.
     Available as of cURL 7.10.7. | 
  
   
   | 
     An array of custom HTTP header strings to pass to proxies.
     Available as of PHP 7.0.7 and cURL 7.37.0.
     | 
  
   | CURLOPT_PROXYPASSWORD(int) | 
     Set a string with the password to be used for authentication with the proxy.
     Available as of cURL 7.19.1.
     | 
  
   | CURLOPT_PROXYPORT(int) | 
     An int with the port number of the proxy to connect to.
     This port number can also be set in CURLOPT_PROXY.
     Setting this to zero makes cURL use the default proxy port number
     or the port number specified in the proxy URL string.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_PROXYTYPE(int) | 
     Sets the type of the proxy to one of the
     CURLPROXY_*constants.
     Defaults toCURLPROXY_HTTP.
     Available as of cURL 7.10. | 
  
   | CURLOPT_PROXYUSERNAME(int) | 
     Set a string with the username to be used for authentication with the proxy.
     Available as of cURL 7.19.1.
     | 
  
   | CURLOPT_PROXYUSERPWD(int) | 
     A string with a username and password formatted as
     [username]:[password]to use for the
     connection to the proxy.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_PROXY_CAINFO(int) | 
     The path to proxy Certificate Authority (CA) bundle. Set the path as a
     string naming a file holding one or more certificates to
     verify the HTTPS proxy with.
     This option is for connecting to an HTTPS proxy, not an HTTPS server.
     Defaults set to the system path where cURL's cacert bundle is assumed
     to be stored.
     Available as of PHP 7.3.0 and cURL 7.52.0.
     | 
  
   | CURLOPT_PROXY_CAINFO_BLOB(int) | 
     A string with the name of a PEM file holding one or more certificates to verify the HTTPS proxy with.
     This option is for connecting to an HTTPS proxy, not an HTTPS server.
     Defaults set to the system path where cURL's cacert bundle is assumed
     to be stored.
     Available as of PHP 8.2.0 and cURL 7.77.0.
     | 
  
   | CURLOPT_PROXY_CAPATH(int) | 
     A string with the directory holding multiple CA certificates
     to verify the HTTPS proxy with.
     Available as of PHP 7.3.0 and cURL 7.52.0.
     | 
  
   | CURLOPT_PROXY_CRLFILE(int) | 
     Set to a string with the file name
     with the concatenation of CRL (Certificate Revocation List)
     in PEM format to use in the certificate validation that occurs during
     the SSL exchange.
     Available as of PHP 7.3.0 and cURL 7.52.0.
     | 
  
   | CURLOPT_PROXY_ISSUERCERT(int) | 
     Proxy issuer SSL certificate filename string.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_PROXY_ISSUERCERT_BLOB(int) | 
     A string with the proxy issuer SSL certificate.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_PROXY_KEYPASSWD(int) | 
     Set the string be used as the password required to use the
     CURLOPT_PROXY_SSLKEYprivate key.
     A passphrase is not needed to load a certificate
     but one is needed to load a private key.
     This option is for connecting to an HTTPS proxy, not an HTTPS server.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_PINNEDPUBLICKEY(int) | 
     Set the pinned public key for HTTPS proxy.
     The string can be the file name of the pinned public key
     which is expected to be in a PEMorDERfile format.
     The string can also be any number of base64 encoded sha256 hashes
     preceded bysha256//and separated by;.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SERVICE_NAME(int) | 
     A string with the proxy authentication service name.
     Available as of PHP 7.0.7, cURL 7.43.0 (for HTTP proxies) and cURL 7.49.0 (for SOCKS5 proxies).
     | 
  
   | CURLOPT_PROXY_SSLCERT(int) | 
     A string with the file name of the client certificate used to connect to the HTTPS proxy.
     The default format is P12on Secure Transport andPEMon other engines,
     and can be changed withCURLOPT_PROXY_SSLCERTTYPE.
     With NSS or Secure Transport, this can also be the nickname of the certificate
     used for authentication as it is named in the security database.
     If a file from the current directory is to be used,
     it must be prefixed with./in order to avoid confusion with a nickname.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSLCERTTYPE(int) | 
     A string with the format of the client certificate used when connecting to an HTTPS proxy.
     Supported formats are PEMandDER, except with Secure Transport.
     OpenSSL (versions 0.9.3 and later) and Secure Transport
     (on iOS 5 or later, or OS X 10.7 or later) also supportP12for
     PKCS#12-encoded files. Defaults toPEM.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSLCERT_BLOB(int) | 
     A string with the SSL proxy client certificate.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_PROXY_SSLKEY(int) | 
     A string with the file name of the private key
     used for connecting to the HTTPS proxy.
     The default format is PEMand can be changed withCURLOPT_PROXY_SSLKEYTYPE.
     (iOS and Mac OS X only) This option is ignored if cURL was built against
     Secure Transport. Available if built with TLS enabled.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSLKEYTYPE(int) | 
     A string with the format of the private key.
     Supported formats are:
     PEM,DER,ENG.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSLKEY_BLOB(int) | 
     A string with the private key for connecting to the HTTPS proxy.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_PROXY_SSLVERSION(int) | 
     Set the preferred HTTPS proxy TLS version to one of the
     CURL_SSLVERSION_*constants.
     Defaults toCURL_SSLVERSION_DEFAULT. Warning
      Available as of PHP 7.3.0 and cURL 7.52.0.
       It is better to not set this option and leave the default
       CURL_SSLVERSION_DEFAULTwhich will attempt to figure out the remote SSL protocol version. | 
  
   | CURLOPT_PROXY_SSL_CIPHER_LIST(int) | 
     A string with a colon-separated list of ciphers
     to use for the connection to the HTTPS proxy.
     When used with OpenSSL commas and spaces are also acceptable as separators,
     and !,-and+can be used as operators.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSL_OPTIONS(int) | 
     Set proxy SSL behavior options, which is a bitmask of the
     CURLSSLOPT_*constants.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSL_VERIFYHOST(int) | 
     Set to 2to verify in the HTTPS proxy's certificate name fields against the proxy name.
     When set to0the connection succeeds regardless of the names used in the certificate.
     Use that ability with caution!
     Set to1in cURL 7.28.0 and earlier as a debug option.
     Set to1in  cURL 7.28.1 to 7.65.3CURLE_BAD_FUNCTION_ARGUMENTis returned.
     As of cURL 7.66.01and2is treated as the same value.
     Defaults to2.
     In production environments the value of this option should be kept at2.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_SSL_VERIFYPEER(int) | 
     Set to falseto stop cURL from verifying the peer's certificate.
     Alternate certificates to verify against can be
     specified with theCURLOPT_CAINFOoption
     or a certificate directory can be specified with theCURLOPT_CAPATHoption.
     When set tofalse, the peer certificate verification succeeds regardless.trueby default.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_TLS13_CIPHERS(int) | 
     A string with a colon-separated list of ciphers to use for the connection to the TLS 1.3 connection to a proxy.
     This option is currently used only when cURL is built to use OpenSSL 1.1.1 or later.
     When using a different SSL backend the TLS 1.3 cipher suites can be set
     with the CURLOPT_PROXY_SSL_CIPHER_LISToption.
     Available as of PHP 7.3.0 and cURL 7.61.0. | 
  
   | CURLOPT_PROXY_TLSAUTH_PASSWORD(int) | 
     A string with the password to use for the TLS authentication method specified with the
     CURLOPT_PROXY_TLSAUTH_TYPEoption. Requires that theCURLOPT_PROXY_TLSAUTH_USERNAMEoption to also be set.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_TLSAUTH_TYPE(int) | 
     The method of the TLS authentication used for the HTTPS connection.
     Supported method is SRP. Available as of PHP 7.3.0 and cURL 7.52.0.Note: 
       
       Secure Remote Password (SRP) authentication for TLS provides mutual authentication
       if both sides have a shared secret. To use TLS-SRP, the
       CURLOPT_PROXY_TLSAUTH_USERNAMEandCURLOPT_PROXY_TLSAUTH_PASSWORDoptions must also be set.
 | 
  
   | CURLOPT_PROXY_TLSAUTH_USERNAME(int) | 
     The username to use for the HTTPS proxy TLS authentication method specified with the
     CURLOPT_PROXY_TLSAUTH_TYPEoption. Requires that theCURLOPT_PROXY_TLSAUTH_PASSWORDoption to also be set.
     Available as of PHP 7.3.0 and cURL 7.52.0. | 
  
   | CURLOPT_PROXY_TRANSFER_MODE(int) | 
     Set to 1to set the transfer mode (binary or ASCII)
     for FTP transfers done via an HTTP proxy, by appendingtype=aortype=ito the URL.
     Without this setting or it being set to0,CURLOPT_TRANSFERTEXThas no effect
     when doing FTP via a proxy.
     Defaults to0.
     Available as of cURL 7.18.0. | 
  
   | CURLOPT_PUT(int) | 
     trueto HTTP PUT a file. The file to PUT must
     be set withCURLOPT_READDATAandCURLOPT_INFILESIZE.
     Available as of cURL 7.1.0 and deprecated as of cURL 7.12.1. | 
  
   | CURLOPT_QUICK_EXIT(int) | 
     Set to truefor cURL to skip cleanup of resources
     when recovering from a timeout.
     This allows for a swift termination of the cURL process
     at the expense of a possible leak of associated resources.
     Available as of PHP 8.3.0 and cURL 7.87.0. | 
  
   | CURLOPT_QUOTE(int) | 
     An array of FTP command strings to execute on the server prior to the FTP request.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_RANDOM_FILE(int) | 
     A string with a filename to be used to seed the random number generator for SSL.
     Available as of cURL 7.7.0 and deprecated as of cURL 7.84.0.
     | 
  
   | CURLOPT_RANGE(int) | 
     A string with the range(s) of data to retrieve in the format X-Ywhere X or Y are optional. HTTP transfers
     also support several intervals, separated with commas in the formatX-Y,N-M.
     Set tonullto disable requesting a byte range.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_READDATA(int) | 
     Sets a file pointer resource that will be used by the file read function
     set with CURLOPT_READFUNCTION.
     Available as of cURL 7.9.7. | 
  
   | CURLOPT_READFUNCTION(int) | 
     A callable with the following signature:
      
      
       The callback should return a string
     with a length equal or smaller than the amount of data requested,
     typically by reading it from the passed stream resource. It should
     return an empty string to signalcurlHandle
        
         The cURL handle.
        
       streamResource
        
         Stream resource provided to cURL through the option
     CURLOPT_READDATA.maxAmountOfDataToRead
        
         The maximum amount of data to be read.
        
        EOF.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_REDIR_PROTOCOLS(int) | 
     Bitmask of CURLPROTO_*values
     which limit what protocols cURL may use in a transfer that it follows to in
     a redirect whenCURLOPT_FOLLOWLOCATIONis enabled.
     This allows limiting specific transfers to only be allowed to use a subset
     of protocols in redirections.
     As of cURL 7.19.4, by default cURL will allow all protocols
     except forFILEandSCP.
     Prior to cURL 7.19.4, cURL would unconditionally follow to all supported protocols.
     See alsoCURLOPT_PROTOCOLSfor protocol constant values.
     Available as of cURL 7.19.4 and deprecated as of cURL 7.85.0. | 
  
   | CURLOPT_REDIR_PROTOCOLS_STR(int) | 
     Set to a string with a comma separated list
     of case insensitive protocol names (URL schemes)
     to allow to follow to in a redirect when
     CURLOPT_FOLLOWLOCATIONis enabled.
     Set toALLto enable all protocols.
     As of cURL 7.65.2 it defaults toFTP,FTPS,HTTPandHTTPS.
     From cURL 7.40.0 to 7.65.1, this defaults to all protocols exceptFILE,SCP,SMBandSMBS.
     Prior to cURL 7.40.0, this defaults to all protocols exceptFILEandSCP.
     Available protocols are:DICT,FILE,FTP,FTPS,GOPHER,GOPHERS,HTTP,HTTPS,IMAP,IMAPS,LDAP,LDAPS,MQTT,POP3,POP3S,RTMP,RTMPE,RTMPS,RTMPT,RTMPTE,RTMPTS,RTSP,SCP,SFTP,SMB,SMBS,SMTP,SMTPS,TELNET,TFTP,WS,WSS.
     Available as of PHP 8.3.0 and cURL 7.85.0. | 
  
   | CURLOPT_REFERER(int) | 
     A string with the contents of the Referer: header to be used in a HTTP request.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_REQUEST_TARGET(int) | 
     A string to use in the upcoming request
     instead of the path as extracted from the URL.
     Available as of PHP 7.3.0 and cURL 7.55.0.
     | 
  
   | CURLOPT_RESOLVE(int) | 
     Provide an array of colon-separated strings
     with custom addresses for specific host and port pairs in the following format:
     
      array(
        "example.com:80:127.0.0.1",
        "example2.com:443:127.0.0.2",
      )
     Available as of cURL 7.21.3. | 
  
   | CURLOPT_RESUME_FROM(int) | 
     The offset, in bytes, to resume a transfer from.
     This option accepts any value that can be cast to a valid int.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_RETURNTRANSFER(int) | 
     trueto return the transfer as a string of the
     return value of curl_exec() instead of outputting
     it directly. | 
  
   | CURLOPT_RTSP_CLIENT_CSEQ(int) | 
     Set an int with the CSEQ number to issue for the next RTSP request.
     Useful if the application is resuming a previously broken connection.
     The CSEQ increments from this new number henceforth.
     Defaults to 0.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_RTSP_REQUEST(int) | 
     Sets the kind of RTSP request to make.
     Must be one of the CURL_RTSPREQ_*constants.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_RTSP_SERVER_CSEQ(int) | 
     Set an int with the CSEQ number to expect
     for the next RTSP Server to Client request.
     This feature (listening for Server requests) is unimplemented.
     Defaults to 0.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_RTSP_SESSION_ID(int) | 
     Set a string with the value of the current RTSP Session ID for the handle.
     Once this value is set to any non-nullvalue,
     cURL returnsCURLE_RTSP_SESSION_ERRORif the ID received from the server does not match.
     If set tonull, cURL automatically sets the ID
     the first time the server sets it in a response.
     Defaults tonullAvailable as of cURL 7.20.0. | 
  
   | CURLOPT_RTSP_STREAM_URI(int) | 
     Sets a string with the stream URI to operate on.
     If not set, cURL defaults to operating on generic server options
     by passing *in the place of the RTSP Stream URI.
     When working with RTSP,CURLOPT_RTSP_STREAM_URIindicates what URL to send to the server in the request header
     while theCURLOPT_URLindicates
     where to make the connection to.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_RTSP_TRANSPORT(int) | 
     Set the Transport:header for this RTSP session.
     Available as of cURL 7.20.0. | 
  
   | CURLOPT_SAFE_UPLOAD(int) | 
     Always true, what disables support for the@prefix for
     uploading files inCURLOPT_POSTFIELDS, which
     means that values starting with@can be safely
     passed as fields. CURLFile may be used for
     uploads instead. | 
  
   | CURLOPT_SASL_AUTHZID(int) | 
     The authorization identity (authzid) string for the transfer. Only applicable to the PLAIN SASL
     authentication mechanism where it is optional. When not specified, only the authentication identity
     (authcid) as specified by the username will be sent to the server, along with the password.
     The server will derive the authzid from the authcid when not provided, which it will then use internally.
     Available as of PHP 8.2.0 and cURL 7.66.0.
     | 
  
   | CURLOPT_SASL_IR(int) | 
     trueto enable sending the initial response in the first packet.
     Available as of PHP 7.0.7 and cURL 7.31.0. | 
  
   | CURLOPT_SERVICE_NAME(int) | 
     A string with the authentication service name.
     Available as of PHP 7.0.7 and cURL 7.43.0.
     | 
  
   | CURLOPT_SHARE(int) | 
     A result of curl_share_init(). Makes the cURL
     handle to use the data from the shared handle.
     Available as of cURL 7.10.
     | 
  
   | CURLOPT_SOCKS5_AUTH(int) | 
     The SOCKS5 authentication method(s) to use. The options are:
     CURLAUTH_BASIC,CURLAUTH_GSSAPI,CURLAUTH_NONE.
     When more than one method is set, cURL will poll the server to see
     what methods it supports and pick the best one.
     Defaults toCURLAUTH_BASIC|CURLAUTH_GSSAPI.
     Set the actual username and password with theCURLOPT_PROXYUSERPWDoption.
     Available as of PHP 7.3.0 and cURL 7.55.0. | 
  
   | CURLOPT_SOCKS5_GSSAPI_NEC(int) | 
     Set to 1to enable and0to disable
     the unprotected exchange of the protection mode negotiation
     as part of the GSSAPI negotiation.
     Available as of cURL 7.19.4. | 
  
   | CURLOPT_SOCKS5_GSSAPI_SERVICE(int) | 
     Set a string holding the name of the SOCKS5 service.
     Defaults to rcmd.
     Available as of cURL 7.19.4 and deprecated as of cURL 7.49.0.
     UseCURLOPT_PROXY_SERVICE_NAMEinstead. | 
  
   | CURLOPT_SSH_AUTH_TYPES(int) | 
     A bitmask consisting of one or more of the following constants:
     CURLSSH_AUTH_PUBLICKEY,CURLSSH_AUTH_PASSWORD,CURLSSH_AUTH_HOST,CURLSSH_AUTH_KEYBOARD,CURLSSH_AUTH_AGENT,CURLSSH_AUTH_ANY.
     Defaults toCURLSSH_AUTH_ANY.
     Available as of cURL 7.16.1. | 
  
   | CURLOPT_SSH_COMPRESSION(int) | 
     trueto enable,falseto disable built-in SSH compression.
     Note that the server can disregard this request.
     Defaults tofalse.
     Available as of PHP 7.3.0 and cURL 7.56.0. | 
  
   | CURLOPT_SSH_HOSTKEYFUNCTION(int) | 
     A callable that will be called when SSH host key verification is needed.
     The callback must have the following signature:
      
      
       This callback overridescurlHandle
        
         The cURL handle.
        
       keyType
        
         One of the CURLKHTYPE_*key types.key
        
         The key to check.
        
       keyLength
        
         The length of the key in bytes.
        
        CURLOPT_SSH_KNOWNHOSTS.
     Available as of PHP 8.3.0 and cURL 7.84.0. | 
  
   | CURLOPT_SSH_HOST_PUBLIC_KEY_MD5(int) | 
     A string containing 32 hexadecimal digits which should contain the
     MD5 checksum of the remote host's public key, and cURL will reject
     the connection to the host unless the md5sums match.
     This option is only for SCP and SFTP transfers.
     Available as of cURL 7.17.1.
     | 
  
   | CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256(int) | 
     A string with the base64-encoded SHA256 hash
     of the remote host's public key.
     The transfer will fail if the given hash does not match the hash the remote host provides.
     Available as of PHP 8.2.0 and cURL 7.80.0.
     | 
  
   | CURLOPT_SSH_KNOWNHOSTS(int) | 
     Set to the filename of the known_host file to use
     which should use the OpenSSH file format as supported by libssh2.
     Available as of cURL 7.19.6.
     | 
  
   | CURLOPT_SSH_PRIVATE_KEYFILE(int) | 
     The file name for a private key. If not used, cURL defaults to
     $HOME/.ssh/id_dsa if the HOME environment variable is set,
     and just id_dsain the current directory if HOME is not set.
     If the file is password-protected, set the password withCURLOPT_KEYPASSWD.
     Available as of cURL 7.16.1. | 
  
   | CURLOPT_SSH_PUBLIC_KEYFILE(int) | 
     The file name for a public key. If not used, cURL defaults to
     $HOME/.ssh/id_dsa.pub if the HOME environment variable is set,
     and just id_dsa.pubin the current directory if HOME is not set.
     Available as of cURL 7.16.1. | 
  
   | CURLOPT_SSLCERT(int) | 
     The name of a file containing a PEM formatted certificate.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_SSLCERTPASSWD(int) | 
     The password required to use the
     CURLOPT_SSLCERTcertificate.
     Available as of cURL 7.1.0 and deprecated as of cURL 7.17.0. | 
  
   | CURLOPT_SSLCERTTYPE(int) | 
     A string with the format of the certificate. Supported formats are:
     PEM,DER,ENG,P12.P12(for PKCS#12-encoded files) is available as of OpenSSL 0.9.3.
     Defaults toPEM.
     Available as of cURL 7.9.3. | 
  
   | CURLOPT_SSLCERT_BLOB(int) | 
     A string with the SSL client certificate.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_SSLENGINE(int) | 
     The string identifier for the crypto engine of the private SSL key
     specified in CURLOPT_SSLKEY.
     Available as of cURL 7.9.3. | 
  
   | CURLOPT_SSLENGINE_DEFAULT(int) | 
     The string identifier for the crypto engine used for asymmetric crypto
     operations.
     Available as of cURL 7.9.3.
     | 
  
   | CURLOPT_SSLKEY(int) | 
     The name of a file containing a private SSL key.
     Available as of cURL 7.9.3.
     | 
  
   | CURLOPT_SSLKEYPASSWD(int) | 
     The secret password needed to use the private SSL key specified in
     CURLOPT_SSLKEY. Available as of cURL 7.9.3 and deprecated as of cURL 7.17.0.Note: 
       
       Since this option contains a sensitive password, remember to keep
       the PHP script it is contained within safe.
      
 | 
  
   | CURLOPT_SSLKEYTYPE(int) | 
     The key type of the private SSL key specified in
     CURLOPT_SSLKEY. Supported key types are:PEM,DER,ENG.
     Defaults toPEM.
     Available as of cURL 7.9.3. | 
  
   | CURLOPT_SSLKEY_BLOB(int) | 
     A string private key for client cert.
     Available as of PHP 8.1.0 and cURL 7.71.0.
     | 
  
   | CURLOPT_SSLVERSION(int) | 
     One of
     the Defaults toCURL_SSLVERSION_*constants. CURL_SSLVERSION_DEFAULT.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_SSL_CIPHER_LIST(int) | 
     A colon-separated string of ciphers to use
     for the TLS 1.2 (1.1, 1.0) connection.
     Available as of cURL 7.9.
     | 
  
   | CURLOPT_SSL_EC_CURVES(int) | 
     A colon delimited list of elliptic curve algorithms. For example,
     X25519:P-521is a valid list of two elliptic curves.
     This option defines the client's key exchange algorithms in the SSL handshake,
     if the SSL backend cURL is built to use supports it.
     Available as of PHP 8.2.0 and cURL 7.73.0. | 
  
   | CURLOPT_SSL_ENABLE_ALPN(int) | 
     falseto disable ALPN in the SSL handshake (if the SSL backend
     cURL is built to use supports it), which can be used to
     negotiate http2.
     Available as of PHP 7.0.7 and cURL 7.36.0. | 
  
   | CURLOPT_SSL_ENABLE_NPN(int) | 
     falseto disable NPN in the SSL handshake (if the SSL backend
     cURL is built to use supports it), which can be used to
     negotiate http2.
     Available as of PHP 7.0.7 and cURL 7.36.0, and deprecated as of cURL 7.86.0. | 
  
   | CURLOPT_SSL_FALSESTART(int) | 
     trueto enable andfalseto disable TLS false start
     which is a mode where a TLS client starts sending application data
     before verifying the server'sFinishedmessage.
     Available as of PHP 7.0.7 and cURL 7.42.0. | 
  
   | CURLOPT_SSL_OPTIONS(int) | 
     Set SSL behavior options, which is a bitmask of the
     CURLSSLOPT_*constants.
     Defaults to none of the bits being set.
     Available as of PHP 7.0.7. and cURL 7.25.0. | 
  
   | CURLOPT_SSL_SESSIONID_CACHE(int) | 
     Set to 0to disable and1to enable
     SSL session-ID caching.
     By default all transfers are done using the cache enabled.
     Available as of cURL 7.16.0. | 
  
   | CURLOPT_SSL_VERIFYHOST(int) | 
     2to verify that a Common Name field or a Subject Alternate Name
     field in the SSL peer certificate matches the provided hostname.0to not check the names.1should not be used.
     In production environments the value of this option
     should be kept at2(default value). Support for value1removed in cURL 7.28.1.
     Available as of cURL 7.8.1. | 
  
   | CURLOPT_SSL_VERIFYPEER(int) | 
     falseto stop cURL from verifying the peer's
     certificate. Alternate certificates to verify against can be
     specified with theCURLOPT_CAINFOoption
     or a certificate directory can be specified with theCURLOPT_CAPATHoption.
     Defaults totrueas of cURL 7.10.
     Default bundle of CA certificates installed as of cURL 7.10.
     Available as of cURL 7.4.2. | 
  
   | CURLOPT_SSL_VERIFYSTATUS(int) | 
     trueto enable andfalseto disable verification of the certificate's status.
     Available as of PHP 7.0.7 and cURL 7.41.0. | 
  
   | CURLOPT_STDERR(int) | 
     Accepts a file handle resource pointing to
     an alternative location to output errors to instead of
     STDERR.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_STREAM_WEIGHT(int) | 
     Set the numerical stream weight (a number between 1and256).
     Available as of PHP 7.0.7 and cURL 7.46.0. | 
  
   
   | 
     trueto suppress proxy CONNECT response headers from the user callback functionsCURLOPT_HEADERFUNCTIONandCURLOPT_WRITEFUNCTION,
     whenCURLOPT_HTTPPROXYTUNNELis used and a CONNECT request is made.
     Defaults tofalse.
     Available as of PHP 7.3.0 and cURL 7.54.0. | 
  
   | CURLOPT_TCP_FASTOPEN(int) | 
     trueto enable andfalseto disable TCP Fast Open.
     Available as of PHP 7.0.7 and cURL 7.49.0. | 
  
   | CURLOPT_TCP_KEEPALIVE(int) | 
     If set to 1, TCP keepalive probes will be sent. The delay and
     frequency of these probes can be controlled by theCURLOPT_TCP_KEEPIDLEandCURLOPT_TCP_KEEPINTVLoptions, provided the operating system
     supports them. If set to0(default) keepalive probes are disabled.
     The maximum number of probes can be set with theCURLOPT_TCP_KEEPCNToption.
     Available as of cURL 7.25.0. | 
  
   | CURLOPT_TCP_KEEPIDLE(int) | 
     Sets the delay, in seconds, that the operating system will wait while the connection is
     idle before sending keepalive probes, if CURLOPT_TCP_KEEPALIVEis
     enabled. Not all operating systems support this option.
     The default is60.
     Available as of cURL 7.25.0. | 
  
   | CURLOPT_TCP_KEEPINTVL(int) | 
     Sets the interval, in seconds, that the operating system will wait between sending
     keepalive probes, if CURLOPT_TCP_KEEPALIVEis enabled.
     Not all operating systems support this option.
     The default is60.
     Available as of cURL 7.25.0. | 
  
   | CURLOPT_TCP_KEEPCNT(int) | 
     Sets the maximum number of TCP keep-alive probes.
     The default is 9.
     Available as of PHP 8.4.0 and cURL 8.9.0. | 
  
   | CURLOPT_TCP_NODELAY(int) | 
     trueto disable TCP's Nagle algorithm, which tries to minimize
     the number of small packets on the network.
     Defaults totrue.
     Available as of cURL 7.11.2. | 
  
   | CURLOPT_TELNETOPTIONS(int) | 
     Set an array of strings to pass to the telnet negotiations.
     The variables should be in the format >option=value<.
     cURL supports the optionsTTYPE,XDISPLOCandNEW_ENV.
     Available as of cURL 7.7.0. | 
  
   | CURLOPT_TFTP_BLKSIZE(int) | 
     Set the blocksize to use for TFTP data transmission.
     Valid range is 8-65464bytes.
     The default of512bytes is used if this option is not specified.
     The specified block size is only used if supported by the remote server.
     If the server does not return an option acknowledgment
     or returns an option acknowledgment with no block size,
     the default of512bytes is used.
     Available as of cURL 7.19.4. | 
  
   | CURLOPT_TFTP_NO_OPTIONS(int) | 
     trueto not send TFTP options requests.
     Defaults tofalse.
     Available as of PHP 7.0.7 and cURL 7.48.0. | 
  
   | CURLOPT_TIMECONDITION(int) | 
     Set how CURLOPT_TIMEVALUEis treated.
     UseCURL_TIMECOND_IFMODSINCEto return the
     page only if it has been modified since the time specified inCURLOPT_TIMEVALUE. If it hasn't been modified,
     a304 Not Modifiedheader will be returned
     assumingCURLOPT_HEADERistrue.
     UseCURL_TIMECOND_IFUNMODSINCEfor the reverse
     effect. UseCURL_TIMECOND_NONEto ignoreCURLOPT_TIMEVALUEand always return the page.CURL_TIMECOND_NONEis the default.
     Prior to cURL 7.46.0 the default wasCURL_TIMECOND_IFMODSINCE.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_TIMEOUT(int) | 
     The maximum number of seconds to allow cURL functions to execute.
     Defaults to 0, meaning that functions never time out during transfer.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_TIMEOUT_MS(int) | 
     The maximum number of milliseconds to allow cURL functions to
     execute.
     If cURL is built to use the standard system name resolver, that
     portion of the connect will still use full-second resolution for
     timeouts with a minimum timeout allowed of one second.
     Defaults to 0, meaning that functions never time out during transfer.
     Available as of cURL 7.16.2. | 
  
   | CURLOPT_TIMEVALUE(int) | 
     The time in seconds since January 1st, 1970. The time will be used
     by CURLOPT_TIMECONDITION.
     Defaults to0.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_TIMEVALUE_LARGE(int) | 
     The time in seconds since January 1st, 1970. The time will be used
     by CURLOPT_TIMECONDITION. Defaults to zero.
     The difference between this option andCURLOPT_TIMEVALUEis the type of the argument. On systems where 'long' is only 32 bit wide,
     this option has to be used to set dates beyond the year 2038.
     Available as of PHP 7.3.0 and cURL 7.59.0. | 
  
   | CURLOPT_TLS13_CIPHERS(int) | 
     A string with a colon-separated list of ciphers
     to use for the connection to the TLS 1.3 connection.
     This option is currently used only when cURL is built to use OpenSSL 1.1.1 or later.
     When using a different SSL backend the TLS 1.3 cipher suites can be set
     with the CURLOPT_SSL_CIPHER_LISToption.
     Available as of PHP 7.3.0 and cURL 7.61.0. | 
  
   | CURLOPT_TLSAUTH_PASSWORD(int) | 
     Set a password to use for the TLS authentication method specified
     with the CURLOPT_TLSAUTH_TYPEoption. Requires that
     theCURLOPT_TLSAUTH_USERNAMEoption also be set.
     This feature relies on TLS SRP which does not work with TLS 1.3.
     Available as of cURL 7.21.4. | 
  
   | CURLOPT_TLSAUTH_TYPE(int) | 
     Set a string with the method of the TLS authentication.
     Supported method is SRP(TLS Secure Remote Password authentication).
     Available as of cURL 7.21.4. | 
  
   | CURLOPT_TLSAUTH_USERNAME(int) | 
     Set a string with the username to use for the TLS authentication method
     specified with the CURLOPT_TLSAUTH_TYPEoption.
     Requires that theCURLOPT_TLSAUTH_PASSWORDoption
     also be set.
     This feature relies on TLS SRP which does not work with TLS 1.3.
     Available as of cURL 7.21.4. | 
  
   | CURLOPT_TRANSFER_ENCODING(int) | 
     Set to 1to enable and0to disable
     requesting compressedTransfer Encodingin the outgoing
     HTTP request. If the server responds with a compressedTransfer Encoding,
     cURL will automatically uncompress it on reception.
     Defaults to0.
     Available as of cURL 7.21.6. | 
  
   | CURLOPT_TRANSFERTEXT(int) | 
     trueto use ASCII mode for FTP transfers.
     For LDAP, it retrieves data in plain text instead of HTML. On
     Windows systems, it will not setSTDOUTto binary
     mode.
     Defaults tofalse.
     Available as of cURL 7.1.1. | 
  
   | CURLOPT_UNIX_SOCKET_PATH(int) | 
     Enables the use of Unix domain sockets as connection endpoint and
     sets the path to the given string.
     Set to nullto disable.
     Defaults tonull.
     Available as of PHP 7.0.7 and cURL 7.40.0. | 
  
   | CURLOPT_UNRESTRICTED_AUTH(int) | 
     trueto keep sending the username and password
     when following locations (usingCURLOPT_FOLLOWLOCATION), even when the
     hostname has changed.
     Defaults tofalse.
     Available as of cURL 7.10.4. | 
  
   | CURLOPT_UPKEEP_INTERVAL_MS(int) | 
     Some protocols have "connection upkeep" mechanisms. These mechanisms usually send some traffic
     on existing connections in order to keep them alive. This option defines the connection upkeep interval.
     Currently, the only protocol with a connection upkeep mechanism is HTTP/2. When the connection upkeep
     interval is exceeded, an HTTP/2 PING frame is sent on the connection.
     Defaults to CURL_UPKEEP_INTERVAL_DEFAULTwhich is currently60seconds.
     Available as of PHP 8.2.0 and cURL 7.62.0. | 
  
   | CURLOPT_UPLOAD(int) | 
     trueto prepare for and perform an upload.
     Defaults tofalse.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_UPLOAD_BUFFERSIZE(int) | 
     Preferred buffer size in bytes for the cURL upload buffer.
     The upload buffer size by default is 64 kilobytes. The maximum buffer size allowed to be set is 2 megabytes.
     The minimum buffer size allowed to be set is 16 kilobytes.
     Available as of PHP 8.2.0 and cURL 7.62.0.
     | 
  
   | CURLOPT_URL(int) | 
     The URL to fetch. This can also be set when initializing a
     session with curl_init().
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_USE_SSL(int) | 
     Sets the desired level of SSL/TLS for the transfer
     when using FTP, SMTP, POP3, IMAP, etc.
     These are all protocols that start out plain text
     and get "upgraded" to SSL using the STARTTLS command.
     Set to one of the
     CURLUSESSL_*constants.
     Available as of cURL 7.17.0. | 
  
   | CURLOPT_USERAGENT(int) | 
     The contents of the User-Agent: header to be
     used in a HTTP request.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_USERNAME(int) | 
     The user name to use in authentication.
     Available as of cURL 7.19.1.
     | 
  
   | CURLOPT_USERPWD(int) | 
     A username and password formatted as
     [username]:[password]to use for the
     connection.
     Available as cURL 7.1.0. | 
  
   | CURLOPT_VERBOSE(int) | 
     trueto output verbose information. Writes
     output toSTDERR, or the file specified usingCURLOPT_STDERR.
     Defaults tofalse.
     Available as of cURL 7.1.0. | 
  
   | CURLOPT_WILDCARDMATCH(int) | 
     Set to 1to transfer multiple files
     according to a filename pattern.
     The pattern can be specified as part of theCURLOPT_URLoption,
     using an fnmatch-like pattern (Shell Pattern Matching)
     in the last part of URL (filename).
     Available as of cURL 7.21.0. | 
  
   | CURLOPT_WRITEFUNCTION(int) | 
     A callable with the following signature:
      
      
       The data must be saved by the callback
     and the callback must return the exact number of bytes written
     or the transfer will be aborted with an error.
     Available as of cURL 7.1.0.curlHandle
        
         The cURL handle.
        
       data
        
         The data to be written.
        
        | 
  
   
   | 
     Accepts a file handle resource to the file that the header part of the transfer is written to.
     Available as of cURL 7.1.0.
     | 
  
   | CURLOPT_WS_OPTIONS(int) | 
     Accepts a bitmask setting WebSocket behavior options.
     The only available option is CURLWS_RAW_MODE.
     Defaults to0.
     Available as of PHP 8.3.0 and cURL 7.86.0. | 
  
   | CURLOPT_XFERINFOFUNCTION(int) | 
     A callable with the following signature:
      
      callback(    resource $curlHandle,    int $bytesToDownload,    int $bytesDownloaded,    int $bytesToUpload,    int $bytesUploaded): int 
      
       ReturncurlHandle
        
         The cURL handle.
        
       bytesToDownload
        
         The total number of bytes expected to be downloaded in this transfer.
        
       bytesDownloaded
        
         The number of bytes downloaded so far.
        
       bytesToUpload
        
         The total number of bytes expected to be uploaded in this transfer.
        
       bytesUploaded
        
         The number of bytes uploaded so far.
        
        1to abort the transfer
     and set aCURLE_ABORTED_BY_CALLBACKerror.
     Available as of PHP 8.2.0 and cURL 7.32.0. | 
  
   | CURLOPT_SERVER_RESPONSE_TIMEOUT(int) | 
     A timeout in seconds cURL will wait for a response from an
     FTP, SFTP, IMAP,
     SCP, SMTP, or a POP3 server.
     This option replaces the existing CURLOPT_FTP_RESPONSE_TIMEOUToption which is deprecated in cURL 7.85.0.
     Available as of PHP 8.4.0. | 
  
   | CURLOPT_XOAUTH2_BEARER(int) | 
     Specifies the OAuth 2.0 access token.
     Set to nullto disable.
     Defaults tonull.
     Available as of PHP 7.0.7 and cURL 7.33.0. | 
  
   | CURLOPT_PREREQFUNCTION(int) | 
     A callable with the following signature that gets called after the
     connection is established, but before the request payload (for example, the
     GET/POST/DELETE request of an HTTP connection) is sent, and can be used to abort
     or allow the connection depending on the source and destination IP address and
     port numbers:
      
      
       ReturncurlHandle
        
         The cURL handle.
        
       destination_ip
        
         The primary IP of the remote server established with this connection.
         For FTP, this is the IP for the control connection.
         IPv6 addresses are represented without surrounding brackets.
        
       local_ip
        
         The originating IP for this connection.
         IPv6 addresses are represented without surrounding brackets.
        
       destination_port
        
         The primary port number on the remote server established with this connection.
         For FTP, this is the port for the control connection.
         This can be a TCP or a UDP port number depending on the protocol.
        
       local_port
        
         The originating port number for this connection.
         This can be a TCP or a UDP port number depending on the protocol.
        
        CURL_PREREQFUNC_OKto allow the request, orCURL_PREREQFUNC_ABORTto abort the transfer.
     Available as of PHP 8.4.0 and cURL 7.80.0. | 
  
   | CURLOPT_DEBUGFUNCTION(int) | 
     Available as of PHP 8.4.0.
     This option requires CURLOPT_VERBOSEoption enabled.
     A callable to replace the standard cURL verbose output.
     This callback gets called during various stages of the request with verbose debug information.
     The callback should match the following signature: 
      
       curlHandle
        
         The cURL handle.
        
       type
        
         One of the following constants indicating the type of the datavalue:
             
              | Constants | Description |  
          | CURLINFO_TEXT(int) | Informational text. |  
          
          | Header (or header-like) data received from the peer. |  
          
          | Header (or header-like) data sent to the peer. |  
          | CURLINFO_DATA_IN(int) | Unprocessed protocol data received from the peer.
            Even if the data is encoded or compressed, it is not provided decoded nor decompressed to this callback. |  
          | CURLINFO_DATA_OUT(int) | Protocol data sent to the peer. |  
          | CURLINFO_SSL_DATA_IN(int) | SSL/TLS (binary) data received from the peer. |  
          | CURLINFO_SSL_DATA_OUT(int) | SSL/TLS (binary) data sent to the peer. | data
        
         Verbose debug data of the type indicate by the typeparameter. |