PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

curl_multi_exec> <curl_multi_add_handle
Last updated: Sat, 24 Mar 2007

view this page in

curl_multi_close

(PHP 5)

curl_multi_close — Close a set of cURL handles

Popis

void curl_multi_close ( resource $mh )

Closes a set of cURL handles.

Seznam parametrů

mh

A cURL multi handle returned by curl_multi_init().

Návratové hodnoty

Nevrací se žádná hodnota.

Viz také

curl_multi_init()
curl_close()



add a note add a note User Contributed Notes
curl_multi_close
jonhohle at gmail dot com
08-Sep-2008 01:58
curl_multi_close seems to close the curl_multi handle, but not each of the individual curl handles. at least in the PHP 5.3 development build I am using, these each need to be closed manually.

I would recommend the final lines of this example be updated to:

<?php
//close the handles
curl_multi_remove_handle($mh, $ch1);
curl_close($ch1);
curl_multi_remove_handle($mh, $ch2);
curl_close($ch2);
curl_multi_close($mh);
?>

curl_multi_exec> <curl_multi_add_handle
Last updated: Sat, 24 Mar 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites