PHP curl_reset 函数
PHP curl_reset() 用于重置 cURL 会话句柄的所有选项
( PHP 5 >= 5.5.0 )
函数原型
void curl_reset ( resource $ch )
重新初始化 cURL 的所有选项值为默认值
同样会重新设置 curl_init() 的 URL 参数
参数
参数 | 说明 |
---|---|
ch | 由 curl_init() 返回的 cURL 句柄 |
返回值
无
范例
<?php // 创建一个cURL句柄 $ch = curl_init(); // 设置 CURLOPT_USERAGENT 选项 curl_setopt($ch, CURLOPT_USERAGENT, "twle.cn user-agent"); // 重置所有先前设置的选项 curl_reset($ch); // 发送 HTTP 请求 curl_setopt($ch, CURLOPT_URL, 'https://www.twle.cn/'); curl_exec($ch); // the previously set user-agent will be not sent, it has been reset by curl_reset // 关闭句柄 curl_close($ch);