This function blocks the calling process until there is activity on any of the connections opened by the curl_multi interface, or until the timeout period has expired.
In other words, it waits for data to be received in the opened connections.
Internally it fetches socket pointers with "curl_multi_fdset()" and runs the "select()" C function.
It returns in 3 cases:
1. Activity is detected on any socket;
2. Timeout has ended (second parameter);
3. Process received any signal (#man kill).
The function returns an integer:
* In case of activity it returns a number, usually 1.
I suppose, it returns the number of connections with activity detected.
* If timeout expires it returns 0
* In case of error it returns -1
Thanks for attention, hope this helps.
curl_multi_select
(PHP 5)
curl_multi_select — Çoklu cURL bağlantısında bir etkinlik olsun diye bekler
Açıklama
int curl_multi_select
( resource $cct
[, float $zamanaşımı = 1.0
] )
Çoklu cURL bağlantısında bir etkinlik olsun diye bekler.
Değiştirgeler
- cct
-
curl_multi_init() işlevinden dönen çoklu cURL tanıtıcısı.
- zamanaşımı
-
Yanıt için beklenecek azami süre.
Dönen Değerler
Başarı durumunda tanıtıcı sayısını, select sistem çağrısından kaynaklanan bir zaman aşımı veya bir başarısızlık durumunda ise -1 döndürür.
curl_multi_select
public at grik dot net
10-Aug-2008 01:38
10-Aug-2008 01:38
