PHP curl_reset函數
PHP curl_reset函數
(PHP 5 >= 5.5.0)
curl_reset— 重置libcurl會話句柄的所有選項。
說明
void curl_reset ( resource $ch )
該函數將重新初始化cURL的所有選項值(默認值)。
注意:curl_reset() 同樣會重新設置 curl_init() 的 URL 參數。
參數
ch
由 curl_init() 返回的 cURL 句柄。
返回值
沒有返回值。
實例
<?php // 創建一個cURL句柄 $ch = curl_init(); // 設置 CURLOPT_USERAGENT 選項 curl_setopt($ch, CURLOPT_USERAGENT, "My test user-agent"); // 重置所有先前設置的選項 curl_reset($ch); // 發送 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 // 關閉句柄 curl_close($ch); ?>
相關文章
- PHP 變量
- PHP 字符串
- PHP 數組排序
- PHP 包含文件 include 和 require 語句
- PHP Session
- PHP 過濾器
- PHP array() 函數
- PHP array_filter() 函數
- PHP array_merge_recursive() 函數
- PHP array_multisort() 函數
- PHP array_unshift() 函數
- PHP count() 函數
- PHP end() 函數
- PHP key() 函數
- PHP ksort() 函數
- PHP natsort() 函數
- PHP uasort() 函數
- PHP 5 Date/Time 函數
- PHP Error 和 Logging 函數
- PHP HTTP 函數