downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

HttpRequest::setPostFields> <HttpRequest::setMethod
[edit] Last updated: Fri, 25 May 2012

view this page in

HttpRequest::setOptions

(PECL pecl_http >= 0.10.0)

HttpRequest::setOptionsEstablecer las opciones

Descripción

public bool HttpRequest::setOptions ([ array $options ] )

Establece las opciones a usar en la petición.

Vea la lista completa de opciones de peticiones.

Parámetros

options

array asociativo, cuyos valores sobrescribiran los actuales; en caso de estar vacío u omitido, se restablecerán las opciones del objeto HttpRequest

Valores devueltos

Devuelve TRUE en caso de éxito o FALSE en caso de error.



add a note add a note User Contributed Notes HttpRequest::setOptions
mightye at gmail dot com 07-Sep-2007 10:59
Note that options cannot be changed on a request once it is added to a HttpRequestPool.  The pool reads the options and uses the values as they were set at the time it was added.

This means you can't do things like dynamically change the timeout each time you receive some data from the stream (essentially creating an idle timeout when doing things like calling remote long-running jobs).  However you can use low_speed_limit and low_speed_time options to simulate this behavior.

 
show source | credits | sitemap | contact | advertising | mirror sites