(PHP 5 >= 5.5.0, PHP 7)
curl_reset — ����һ�� libcurl �Ự��������е�ѡ��
$ch
) : void�ú����������� cURL �������ѡ����������ΪĬ��ֵ��
ch
�� curl_init() ���ص� 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.