curl_multi_setopt
(PHP 5 >= 5.5.0)
curl_multi_setopt — Set an option for the cURL multi handle
Descrição
Warning
Esta função não está documentada; somente a lista de argumentos está disponível.
Parâmetros
-
mh -
-
option -
One of the
CURLMOPT_*constants. -
value -
The value to be set on
option.valueshould be an int for the following values of theoptionparameter:Option Set valuetoCURLMOPT_PIPELININGPass 1 to enable or 0 to disable. Enabling pipelining on a multi handle will make it attempt to perform HTTP Pipelining as far as possible for transfers using this handle. This means that if you add a second request that can use an already existing connection, the second request will be "piped" on the same connection. CURLMOPT_MAXCONNECTSPass a number that will be used as the maximum amount of simultaneously open connections that libcurl may cache. Default is 10. When the cache is full, curl closes the oldest one in the cache to prevent the number of open connections from increasing.
Valor Retornado
Retorna TRUE em caso de sucesso ou FALSE em caso de falha.