Lines Matching refs:headers

22 	var $headers = array();  variable in nusoap_server
305 $headers = getallheaders();
306 foreach($headers as $k=>$v){
308 $this->headers[$k] = $v;
313 if(isset($this->headers['soapaction'])){
314 $this->SOAPAction = str_replace('"','',$this->headers['soapaction']);
317 if(isset($this->headers['content-type']) && strpos($this->headers['content-type'],'=')){
318 $enc = str_replace('"','',substr(strstr($this->headers["content-type"],'='),1));
358 $this->headers[$k] = $v;
392 $this->headers[$k] = $v;
429 if (isset($this->headers['content-encoding']) && $this->headers['content-encoding'] != '') {
430 $this->debug('got content encoding: ' . $this->headers['content-encoding']);
431 …if ($this->headers['content-encoding'] == 'deflate' || $this->headers['content-encoding'] == 'gzip…
434 if ($this->headers['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) {
436 …} elseif ($this->headers['content-encoding'] == 'gzip' && $degzdata = gzinflate(substr($data, 10))…
449 $data = $this->parseRequest($this->headers, $data);
734 …if (strlen($payload) > 1024 && isset($this->headers) && isset($this->headers['accept-encoding'])) …
735 if (strstr($this->headers['accept-encoding'], 'gzip')) {
747 } elseif (strstr($this->headers['accept-encoding'], 'deflate')) {
798 * @param array $headers The HTTP headers
803 function parseRequest($headers, $data) { argument
804 …ing parseRequest() for data of length ' . strlen($data) . ' and type ' . $headers['content-type']);
805 if (!strstr($headers['content-type'], 'text/xml')) {
809 if (strpos($headers['content-type'], '=')) {
810 $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1));