curl_multi_select

(PHP 5, PHP 7, PHP 8)

curl_multi_select在任意 curl_multi 连接上等待活动

说明

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

阻塞到任意 curl_multi连接上有活动。

参数

multi_handle

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

timeout

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

返回值

成功时返回描述符集合中描述符的数量。如果没有任何活动的描述符,则为 0。失败时,此函数将在 select 失败时返回 -1(来自底层 select 系统调用)。

更新日志

版本 说明
8.0.0 multi_handle expects a CurlMultiHandle instance now; previously, a resource was expected.

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top