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

search for in the

curl_multi_exec> <curl_multi_add_handle
[edit] Last updated: Sat, 18 May 2013

view this page in

curl_multi_close

(PHP 5)

curl_multi_close关闭一组cURL句柄

说明

void curl_multi_close ( resource $mh )

关闭一组cURL句柄。

参数

mh

curl_multi_init() 返回的 cURL 多个句柄。

返回值

没有返回值。

范例

Example #1 curl_multi_close() example

这个范例将会创建2个cURL句柄,把它们加到批处理句柄,然后并行地运行它们。

<?php
// 创建一对cURL资源
$ch1 curl_init();
$ch2 curl_init();

// 设置URL和相应的选项
curl_setopt($ch1CURLOPT_URL"http://www.example.com/");
curl_setopt($ch1CURLOPT_HEADER0);
curl_setopt($ch2CURLOPT_URL"http://www.php.net/");
curl_setopt($ch2CURLOPT_HEADER0);

// 创建批处理cURL句柄
$mh curl_multi_init();

// 增加2个句柄
curl_multi_add_handle($mh,$ch1);
curl_multi_add_handle($mh,$ch2);

$running=null;
// 执行批处理句柄
do {
    
curl_multi_exec($mh,$running);
} while (
$running 0);

// 关闭全部句柄
curl_multi_remove_handle($mh$ch1);
curl_multi_remove_handle($mh$ch2);
curl_multi_close($mh);

?>

参见



add a note add a note User Contributed Notes curl_multi_close - [1 notes]
up
1
jonhohle at gmail dot com
4 years ago
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);
?>

 
show source | credits | sitemap | contact | advertising | mirror sites