PHP curl_multi_select() 函数用法及示例

PHP CURL参考手册

(PHP 5)

curl_multi_select — 等待所有CURL批处理中的活动连接

语法

int curl_multi_select ( resource $mh [, float $timeout = 1.0 ] )

阻塞直到CURL批处理连接中有活动连接。

参数

mh

由 curl_multi_init() 返回的 CURL 多个句柄。

timeout

以秒为单位,等待响应的时间。

返回值

成功时返回描述符集合中描述符的数量。失败时,select失败时返回-1,否则返回超时(从底层的select系统调用).

PHP CURL参考手册