Advertisement
fernandezekiel

Untitled

Mar 6th, 2014
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.29 KB | None | 0 0
  1.                 $curl = curl_init($this->endPoint);
  2.  
  3.                 $curlopt = [
  4.                     CURLOPT_RETURNTRANSFER => true,
  5.                     CURLOPT_SSL_VERIFYPEER => false,
  6.                     CURLOPT_SSL_VERIFYHOST => false,
  7.                     CURLOPT_HEADER => false,
  8.                     CURLOPT_FAILONERROR => false,
  9.                     CURLOPT_HTTP200ALIASES => array(409)
  10.                 ];
  11.  
  12.                 if(strtoupper($f['method']) == 'POST'){
  13.                     $curlopt[CURLOPT_POST] = TRUE;
  14.                     $curlopt[CURLOPT_POSTFIELDS] = $this->format_query($this->parameters);
  15.                 } else if(strtoupper($f['method']) != 'GET'){
  16.                     $curlopt[CURLOPT_CUSTOMREQUEST] = strtoupper($f['method']);
  17.                     $curlopt[CURLOPT_POSTFIELDS] = $this->format_query($this->parameters);
  18.                 } elseif(count($f['method'])){
  19.                     $url .= strpos($url, '?')? '&' : '?';
  20.                     $url .= $this->format_query($this->parameters);
  21.                 }
  22.  
  23.                 $curlopt[CURLOPT_URL] = $url;
  24.  
  25.                 curl_setopt_array($curl, $curlopt);
  26.                 var_dump($this->parse_response(curl_exec($curl))); // this false
  27.                 echo curl_getinfo($curl, CURLINFO_HTTP_CODE); // this is 409
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement