curl_multi_init

(PHP 5)

curl_multi_init -- Returns a new cURL multi handle

说明

resource curl_multi_init ( void )

警告

本函数暂无文档,仅有参数列表。

参数

mh

A cURL multi handle returned by curl_multi_init().


add a note add a note User Contributed Notes
snoyes at gmail dot com
30-Jul-2007 02:39
In the example shown, the calls to curl_multi_remove_handle() should include the resource as the first parameter:

curl_multi_remove_handle($mh, $ch1);
curl_multi_remove_handle($mh, $ch2);