PHP curl_reset函數(shù)
(PHP 5 >= 5.5.0)
curl_reset— 重置libcurl會(huì)話句柄的所有選項(xiàng)。
說明
void curl_reset ( resource $ch )
該函數(shù)將重新初始化cURL的所有選項(xiàng)值(默認(rèn)值)。
注意:curl_reset() 同樣會(huì)重新設(shè)置 curl_init() 的 URL 參數(shù)。
參數(shù)
ch
由 curl_init() 返回的 cURL 句柄。
返回值
沒有返回值。
實(shí)例
<?php // 創(chuàng)建一個(gè)cURL句柄 $ch = curl_init(); // 設(shè)置 CURLOPT_USERAGENT 選項(xiàng) curl_setopt($ch, CURLOPT_USERAGENT, "My test user-agent"); // 重置所有先前設(shè)置的選項(xiàng) curl_reset($ch); // 發(fā)送 HTTP 請(qǐng)求 curl_setopt($ch, CURLOPT_URL, 'http://w3cschool.cn/'); curl_exec($ch); // the previously set user-agent will be not sent, it has been reset by curl_reset // 關(guān)閉句柄 curl_close($ch); ?>
更多建議: