curl_reset

(PHP 5 >= 5.5.0, PHP 7)

curl_reset����һ�� libcurl �Ự��������е�ѡ��

˵��

curl_reset ( resource $ch ) : void

�ú����������� cURL �������ѡ����������ΪĬ��ֵ��

����

ch

�� curl_init() ���ص� cURL �����

����ֵ

û�з���ֵ��

����

Example #1 curl_reset() ʾ��

<?php
// ����һ��url ���
$ch curl_init();

// ���� CURLOPT_USERAGENT ѡ��
curl_setopt($chCURLOPT_USERAGENT"My test user-agent");

// �������е�Ԥ�����õ�ѡ��
curl_reset($ch);

// ���� HTTP ����
curl_setopt($chCURLOPT_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.

�μ�