Lines Matching refs:options
246 public $options = array(); variable in HTTPRequest
271 function HTTPRequest($URL, $headers=array(), $options=array(), $postdata=NULL) argument
275 $this->options = $options;
285 if (isset($this->options['timeout']))
286 $this->timeout = (int)$this->options['timeout'];
336 if (isset($this->options['proxy_host'])) {
1293 $options = array();
1294 $options['method']=$method;
1295 if (isset($this->conf['timeout'])) $options['timeout'] = $this->conf['timeout'];
1296 if (isset($this->conf['proxy_host'])) $options['proxy_host'] = $this->conf['proxy_host'];
1297 if (isset($this->conf['proxy_port'])) $options['proxy_port'] = $this->conf['proxy_port'];
1298 if (isset($this->conf['proxy_user'])) $options['proxy_user'] = $this->conf['proxy_user'];
1299 if (isset($this->conf['proxy_pass'])) $options['proxy_pass'] = $this->conf['proxy_pass'];
1384 $r = new HTTPRequest($url,$headers,$options,$post);