Php/docs/function.curl-reset
来自菜鸟教程
curl_reset
(PHP 5 >= 5.5.0, PHP 7)
curl_reset — 重置一个 libcurl 会话句柄的所有的选项
说明
curl_reset
( resource $ch
) : void
该函数将给定的 cURL 句柄所有选项重新设置为默认值。
返回值
没有返回值。
范例
Example #1 curl_reset() 示例
<?php// 创建一个url 句柄$ch = curl_init();// 设置 CURLOPT_USERAGENT 选项curl_setopt($ch, CURLOPT_USERAGENT, "My test user-agent");// 重置所有的预先设置的选项curl_reset($ch);// 发送 HTTP 请求curl_setopt($ch, CURLOPT_URL, 'http://example.com/');curl_exec($ch); // 预先设置的 user-agent 不会被发送,它已经被 curl_reset 重置掉了// 关闭句柄curl_close($ch);?>
注释
Note:
curl_reset() also resets the URL given as the curl_init() parameter.