Lines Matching refs:substr

703 			$name = substr(strstr($qname,':'),1);
705 $prefix = substr($qname,0,strpos($qname,':'));
727 return substr( $sstr, 1 );
744 return substr($str,0,$pos);
867 $op = substr($regs[8],0,1);
868 $h = substr($regs[8],1,2);
869 $m = substr($regs[8],strlen($regs[8])-2,2);
1177 if($ns_prefix = substr(strrchr($k,':'),1)){
1260 $v = substr($v,0,strpos($v,'[')); // clip the []
1661 …$uqType = substr($this->simpleTypes[$type]['type'], strrpos($this->simpleTypes[$type]['type'], ':'…
1662 …$ns = substr($this->simpleTypes[$type]['type'], 0, strrpos($this->simpleTypes[$type]['type'], ':')…
1680 …$uqType = substr($this->elements[$type]['type'], strrpos($this->elements[$type]['type'], ':') + 1);
1681 $ns = substr($this->elements[$type]['type'], 0, strrpos($this->elements[$type]['type'], ':'));
2353 …$this->debug('set Authorization: ' . substr($this->outgoing_headers['Authorization'], 0, 12) . '..…
2433 $temp = substr($buffer,0,$chunkend);
2443 $chunk = substr($buffer,$chunkstart);
2451 $chunk = substr($buffer,$chunkstart,$chunkend-$chunkstart);
2463 $temp = substr($buffer,$chunkstart,$chunkend-$chunkstart);
2592 $header_data = trim(substr($data,0,$pos));
2738 $data = ltrim(substr($data,$pos));
2740 $data = ltrim(substr($data,$pos));
2754 $header_data = trim(substr($data,0,$pos));
2756 $data = ltrim(substr($data,$pos));
2858 if ($degzdata = @gzinflate(substr($data, 10))) { // do our best
2864 if ($degzdata = @gzinflate(substr($data, 10))) {
2933 $domain = substr($cookie_str, $start + strlen($cookie_param));
2934 $domain = substr($domain, 0, strpos($domain, ';'));
2942 $expires = substr($cookie_str, $start + strlen($cookie_param));
2943 $expires = substr($expires, 0, strpos($expires, ';'));
2951 $path = substr($cookie_str, $start + strlen($cookie_param));
2952 $path = substr($path, 0, strpos($path, ';'));
2967 $name = substr($value_str, 0, $sep_pos);
2968 $value = substr($value_str, $sep_pos + 1);
3217 if (substr($v, 0, 6) == 'debug=') {
3218 $this->debug("In soap_server, set debug_flag=" . substr($v, 6) . " based on query string #1");
3219 $this->debug_flag = substr($v, 6);
3225 if (substr($v, 0, 6) == 'debug=') {
3226 $this->debug("In soap_server, set debug_flag=" . substr($v, 6) . " based on query string #2");
3227 $this->debug_flag = substr($v, 6);
3340 $enc = str_replace('"','',substr(strstr($this->headers["content-type"],'='),1));
3353 if (substr($k, 0, 5) == 'HTTP_') {
3354 …, strtolower(str_replace('_', ' ', substr($k, 5)))); $k …
3367 $enc = substr(strstr($v, '='), 1);
3387 if (substr($k, 0, 5) == 'HTTP_') {
3388 …, strtolower(str_replace('_', ' ', substr($k, 5)))); $k …
3401 $enc = substr(strstr($v, '='), 1);
3458 …} elseif ($this->headers['content-encoding'] == 'gzip' && $degzdata = gzinflate(substr($data, 10))…
3528 class_exists(substr($this->methodname, 0, strpos($this->methodname, $delim)))) {
3530 $class = substr($this->methodname, 0, strpos($this->methodname, $delim));
3531 $method = substr($this->methodname, strpos($this->methodname, $delim) + strlen($delim));
3544 $method_to_compare = (substr(phpversion(), 0, 2) == '4.') ? strtolower($method) : $method;
3592 $funcCall = substr($funcCall, 0, -1);
3819 $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1));
4157 substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path'];
4183 substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path'];
4359 if ($ns_prefix = substr(strrchr($k, ':'), 1)) {
4385 $prefix = substr($name, 0, strpos($name, ':'));
4389 $name = substr(strstr($name, ':'), 1);
5856 $xml_decl = substr($xml, $pos_xml, strpos($xml, '?>', $pos_xml + 2) - $pos_xml + 1);
5959 $prefix = substr($name,0,strpos($name,':'));
5961 $name = substr(strstr($name,':'),1);
6094 $prefix = substr($name,0,strpos($name,':'));
6096 $name = substr(strstr($name,':'),1);
6104 $id = substr($this->message[$pos]['attrs']['href'],1);
6665 …$this->debug('SOAP message length=' . strlen($soapmsg) . ' contents (max 1000 bytes)=' . substr($s…
6825 $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1));
7036 $paramStr = substr($paramStr, 0, strlen($paramStr)-2);
7037 $paramArrayStr = substr($paramArrayStr, 0, strlen($paramArrayStr)-2);
7038 $paramCommentStr = substr($paramCommentStr, 0, strlen($paramCommentStr)-2);