$response =
curl_exec($this->_curl
);
// if we used streaming, headers are already there
if(!
is_resource($this->out_stream
)) { $this->_response =
$response;
} $request =
curl_getinfo($this->_curl, CURLINFO_HEADER_OUT
);
$request .=
$body;
if (empty($this->_response
)) { throw new Zend_Http_Client_Exception("Error in cURL request: " .
curl_error($this->_curl
));
} // cURL automatically decodes chunked-messages, this means we have to disallow the Zend_Http_Response to do it again
if (stripos($this->_response, "Transfer-Encoding: chunked\r\n"
)) { $this->_response =
str_ireplace("Transfer-Encoding: chunked\r\n", '',
$this->_response
);
} // Eliminate multiple HTTP responses.
do { $parts =
preg_split('|(?:\r?\n){2}|m',
$this->_response, 2
);
$again = false;