Lines Matching refs:v

418 			foreach($attributes as $k => $v){
419 $atts .= " $k=\"".$this->expandEntities($v).'"';
497 foreach(get_object_vars($val) as $k => $v){
498 … = isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serializ…
509 foreach($val as $v){
510 if(is_object($v) && get_class($v) == 'soapval'){
511 $tt_ns = $v->type_ns;
512 $tt = $v->type;
513 } elseif (is_array($v)) {
514 $tt = $this->isArraySimpleOrStruct($v);
516 $tt = gettype($v);
520 $xml .= $this->serialize_val($v,'item',false,false,false,false,$use);
578 foreach($val as $k => $v){
966 foreach($this->namespaces as $k => $v){
967 $ns_string .= "\n xmlns:$k=\"$v\"";
1172 foreach($attrs as $k => $v){
1179 $this->namespaces[$ns_prefix] = $v;
1181 $this->defaultNamespace[$pos] = $v;
1182 if (! $this->getPrefixFromNamespace($v)) {
1183 $this->namespaces['ns'.(count($this->namespaces)+1)] = $v;
1186 …if($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == '…
1187 $this->XMLSchemaVersion = $v;
1188 $this->namespaces['xsi'] = $v.'-instance';
1192 foreach($attrs as $k => $v){
1195 $v = strpos($v,':') ? $this->expandQname($v) : $v;
1196 $eAttrs[$k] = $v;
1223 if (!strpos($v, ':')) {
1255 $v = '';
1257 if(strpos($v,'[,]')){
1260 $v = substr($v,0,strpos($v,'[')); // clip the []
1261 if(!strpos($v,':') && isset($this->typemap[$this->XMLSchemaVersion][$v])){
1262 $v = $this->XMLSchemaVersion.':'.$v;
1264 $this->complexTypes[$this->currentComplexType]['arrayType'] = $v;
1534 foreach ($aParts as $a => $v) {
1536 $contentStr .= " $a=\"".$this->contractQName($v).'"';
1539 $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"';
2053 foreach($u as $k => $v){
2054 $this->debug("$k = $v");
2055 $this->$k = $v;
2484 foreach($this->outgoing_headers as $k => $v){
2485 $hdr = $k.': '.$v;
2526 foreach($this->outgoing_headers as $k => $v){
2527 $curl_headers[] = "$k: $v";
2719 foreach(curl_getinfo($this->ch) as $k => $v){
2720 $err .= "$k: $v<br>";
3216 foreach ($qs as $v) {
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);
3224 foreach ($qs as $v) {
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);
3328 foreach($headers as $k=>$v){
3330 $this->headers[$k] = $v;
3331 $this->request .= "$k: $v\r\n";
3332 $this->debug("$k: $v");
3352 foreach ($_SERVER as $k => $v) {
3361 $v = str_replace('"', '', $v);
3362 $v = str_replace('\\', '', $v);
3363 $this->SOAPAction = $v;
3366 if (strpos($v, '=')) {
3367 $enc = substr(strstr($v, '='), 1);
3380 $this->headers[$k] = $v;
3381 $this->request .= "$k: $v\r\n";
3382 $this->debug("$k: $v");
3386 foreach ($HTTP_SERVER_VARS as $k => $v) {
3395 $v = str_replace('"', '', $v);
3396 $v = str_replace('\\', '', $v);
3397 $this->SOAPAction = $v;
3400 if (strpos($v, '=')) {
3401 $enc = substr(strstr($v, '='), 1);
3414 $this->headers[$k] = $v;
3415 $this->request .= "$k: $v\r\n";
3416 $this->debug("$k: $v");
4072 * @version $Id: nusoap.php,v 1.94 2005/08/04 01:27:42 snichol Exp $
4357 foreach($attrs as $k => $v) {
4360 $this->namespaces[$ns_prefix] = $v;
4362 $this->namespaces['ns' . (count($this->namespaces) + 1)] = $v;
4364 …if ($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == …
4365 $this->XMLSchemaVersion = $v;
4366 $this->namespaces['xsi'] = $v . '-instance';
4371 foreach($attrs as $k => $v) {
4374 $v = strpos($v, ':') ? $this->expandQname($v) : $v;
4376 $eAttrs[$k] = $v;
4881 foreach($this->namespaces as $k => $v) {
4882 $xml .= " xmlns:$k=\"$v\"";
5282 foreach($value as $k => $v) {
5283 $this->debug("serializing map element: key $k, value $v");
5286 $contents .= $this->serialize_val($v,'value',false,false,false,false,$use);
5398 foreach($value as $v) {
5399 $cols = ',' . sizeof($v);
5400 $nv = array_merge($nv, $v);
5409 foreach($value as $k => $v) {
5410 $this->debug("serializing array element: $k, $v of type: $typeDef[arrayType]");
5569 $v = $xvalue[$eName];
5571 $v = null;
5578 …'unbounded' || $attrs['maxOccurs'] > 1) && isset($v) && is_array($v) && $this->isArraySimpleOrStru…
5579 $vv = $v;
5580 foreach ($vv as $k => $v) {
5583 …ializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyl…
5586 $this->debug("calling serialize_val() for $v, $eName, false, false, false, false, $use");
5587 $xml .= $this->serialize_val($v, $eName, false, false, false, false, $use);
5593 …ializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyl…
5596 $this->debug("calling serialize_val() for $v, $eName, false, false, false, false, $use");
5597 $xml .= $this->serialize_val($v, $eName, false, false, false, false, $use);
5639 foreach ($e as $k => $v) {
5641 $v = strpos($v,':') ? $this->expandQname($v) : $v;
5642 $ee[$k] = $v;
5652 foreach ($a as $k => $v) {
5654 $v = strpos($v,':') ? $this->expandQname($v) : $v;
5655 $aa[$k] = $v;
6348 foreach ($this->message[$pos]['xattrs'] as $n => $v) {
6349 $params[$n] = $v;
6681 foreach($return as $k => $v){
6682 $this->$k = $v;
6683 $this->debug("$k = $v<br>");