PHPMailer发送邮件
314
2024-01-18
(PHP 5 >= 5.5.0)
curl_reset — Reset all options of a libcurl session handle
$ch
)
This function re-initializes all options set on the given cURL handle to the default values.
ch
由 curl_init() 返回的 cURL 句柄。
没有返回值。
Example #1 curl_reset() example
<?php
// Create a curl handle
$ch = curl_init();
// Set CURLOPT_USERAGENT option
curl_setopt($ch, CURLOPT_USERAGENT, "My test user-agent");
// Reset all previously set options
curl_reset($ch);
// Send HTTP request
curl_setopt($ch, CURLOPT_URL, 'http://example.com/');
curl_exec($ch); // the previously set user-agent will be not sent, it has been reset by curl_reset
// Close the handle
curl_close($ch);
?>
Note:
curl_reset() also resets the URL given as the curl_init() parameter.
curl_setopt() - 设置一个cURL传输选项
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!