Lines Matching refs:k

446 			foreach($attributes as $k => $v){
447 $atts .= " $k=\"".$this->expandEntities($v).'"';
546 foreach(get_object_vars($val) as $k => $v){
547 …isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_v…
639 foreach($val as $k => $v){
1045 foreach($this->namespaces as $k => $v){
1046 $ns_string .= "\n xmlns:$k=\"$v\"";
1268 foreach($attrs as $k => $v){
1270 if(ereg("^xmlns",$k)){
1273 if($ns_prefix = substr(strrchr($k,':'),1)){
1288 foreach($attrs as $k => $v){
1290 $k = strpos($k,':') ? $this->expandQname($k) : $k;
1292 $eAttrs[$k] = $v;
1687 foreach ($this->schemaInfo as $k => $v) {
1688 if ($k == 'elementFormDefault' || $k == 'attributeFormDefault') {
1689 $attr .= " $k=\"$v\"";
2228 foreach($u as $k => $v){
2229 $this->debug("parsed URL $k = $v");
2230 $this->$k = $v;
2814 foreach($this->outgoing_headers as $k => $v){
2815 $hdr = $k.': '.$v;
2865 foreach($this->outgoing_headers as $k => $v){
2866 …if ($k == 'Connection' || $k == 'Content-Length' || $k == 'Host' || $k == 'Authorization' || $k ==…
2867 $this->debug("Skip cURL header $k: $v");
2869 $curl_headers[] = "$k: $v";
3075 foreach(curl_getinfo($this->ch) as $k => $v){
3076 $err .= "$k: $v<br>";
3715 foreach($headers as $k=>$v){
3716 $k = strtolower($k);
3717 $this->headers[$k] = $v;
3718 $this->request .= "$k: $v\r\n";
3719 $this->debug("$k: $v");
3739 foreach ($_SERVER as $k => $v) {
3740 if (substr($k, 0, 5) == 'HTTP_') {
3741 $k = str_replace(' ', '-', strtolower(str_replace('_', ' ', substr($k, 5))));
3743 $k = str_replace(' ', '-', strtolower(str_replace('_', ' ', $k)));
3745 if ($k == 'soapaction') {
3747 $k = 'SOAPAction';
3751 } else if ($k == 'content-type') {
3767 $this->headers[$k] = $v;
3768 $this->request .= "$k: $v\r\n";
3769 $this->debug("$k: $v");
3773 foreach ($HTTP_SERVER_VARS as $k => $v) {
3774 if (substr($k, 0, 5) == 'HTTP_') {
3775 …$k = str_replace(' ', '-', strtolower(str_replace('_', ' ', substr($k, 5)))); …
3777 …$k = str_replace(' ', '-', strtolower(str_replace('_', ' ', $k))); …
3779 if ($k == 'soapaction') {
3781 $k = 'SOAPAction';
3785 } else if ($k == 'content-type') {
3801 $this->headers[$k] = $v;
3802 $this->request .= "$k: $v\r\n";
3803 $this->debug("$k: $v");
4835 foreach($attrs as $k => $v) {
4836 if (ereg("^xmlns", $k)) {
4837 if ($ns_prefix = substr(strrchr($k, ':'), 1)) {
4849 foreach($attrs as $k => $v) {
4850 $k = strpos($k, ':') ? $this->expandQname($k) : $k;
4851 if ($k != 'location' && $k != 'soapAction' && $k != 'namespace') {
4854 $eAttrs[$k] = $v;
5391 foreach($this->namespaces as $k => $v) {
5392 $xml .= " xmlns:$k=\"$v\"";
5923 foreach($value as $k => $v) {
5924 $this->debug("serializing map element: key $k, value $v");
5926 $contents .= $this->serialize_val($k,'key',false,false,false,false,$use);
6053 foreach($value as $k => $v) {
6054 $this->debug("serializing array element: $k, $v of type: $typeDef[arrayType]");
6224 foreach ($vv as $k => $v) {
6285 foreach ($e as $k => $v) {
6286 $k = strpos($k,':') ? $this->expandQname($k) : $k;
6288 $ee[$k] = $v;
6298 foreach ($a as $k => $v) {
6299 $k = strpos($k,':') ? $this->expandQname($k) : $k;
6301 $aa[$k] = $v;
7370 foreach($return as $k => $v){
7371 $this->$k = $v;
7372 $this->debug("$k = $v<br>");