Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16368 программистов и 1782 робота. Сейчас ищут 2037 программистов ...
curl_reset - Reset all options of a libcurl session handle
Вернуться к: cURL
curl_reset
(PHP 5 >= 5.5.0, PHP 7)
curl_reset — Reset all options of a libcurl session handle
Описание
void curl_reset
( resource
$ch
)This function re-initializes all options set on the given cURL handle to the default values.
Список параметров
-
ch
-
Дескриптор cURL, полученный из curl_init().
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Примеры
Пример #1 curl_reset() 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
// Close the handle
curl_close($ch);
?>
Примечания
Замечание:
curl_reset() also resets the URL given as the curl_init() parameter.
Вернуться к: cURL