Lines Matching refs:ch
71 $ch = curl_init();
72 curl_setopt_array($ch, $this->curl_opt);
74 curl_setopt($ch, CURLOPT_URL, $this->getConf('xmlrpc.cgi'));
75 curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
76 curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookie_file );
77 $server_output = curl_exec($ch);
78 curl_close($ch);
97 $ch = curl_init();
98 curl_setopt_array($ch, $this->curl_opt);
101 curl_setopt($ch, CURLOPT_URL, $this->getConf('xmlrpc.cgi'));
102 curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
103 curl_setopt($ch, CURLOPT_COOKIEFILE, $this->cookie_file );
104 $server_output = curl_exec($ch);
105 curl_close($ch);
132 $ch = curl_init();
133 curl_setopt_array($ch, $this->curl_opt);
136 curl_setopt($ch, CURLOPT_URL, $this->getConf('xmlrpc.cgi'));
137 curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
138 curl_setopt($ch, CURLOPT_COOKIEFILE, $this->cookie_file );
139 $server_output = curl_exec($ch);
140 curl_close($ch);