curl_reset
curl_reset
Reset all options of a libcurl session handle
void **curl_reset** CurlHandle $handle
This function re-initializes all options set on the given cURL handle to the default values.
return.void
Voorbeeld: example
<?php
// Create a curl handle
$ch = curl_init();
// Set CURLOPT_USERAGENT option
curl_setopt($ch, CURLOPT_USERAGENT, "My test user-agent");
// Reset all previously set options
curl_reset($ch);
// Send HTTP request
curl_setopt($ch, CURLOPT_URL, 'http://example.com/');
curl_exec($ch); // the previously set user-agent will be not sent, it has been reset by curl_reset
?>
Opmerking: > also resets the URL given as the parameter.
curl_reset``curl_init
curl_setopt