PHP curl_reset函數(shù)
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 請求 curl_setopt($ch, CURLOPT_URL, 'http://w3cschool.cc/'); curl_exec($ch); // the previously set user-agent will be not sent, it has been reset by curl_reset // 關(guān)閉句柄 curl_close($ch); ?>
相關(guān)文章
- PHP 變量
- PHP 字符串
- PHP 數(shù)組排序
- PHP 包含文件 include 和 require 語句
- PHP Session
- PHP 過濾器
- PHP array() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP count() 函數(shù)
- PHP end() 函數(shù)
- PHP key() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP HTTP 函數(shù)