(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
curl_setopt — Set an option for a cURL transfer
Sets an option on the given cURL session handle.
handle
A cURL handle returned by curl_init().
option
       The CURLOPT_* option to set.
      
value
       The value to be set on option.
       See the description of the
       CURLOPT_* constants
       for details on the type of values each constant expects.
      
Example #1 Initializing a new cURL session and fetching a web page
<?php
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, false);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
?>Note:
Passing an array to
CURLOPT_POSTFIELDSwill encode the data as multipart/form-data, while passing a URL-encoded string will encode the data as application/x-www-form-urlencoded.