public function EasyRdf_Http_Response::getRawBody

Get the raw response body (as transfered "on wire") as string

If the body is encoded (with Transfer-Encoding, not content-encoding - IE "chunked" body), gzip compressed, etc. it will not be decoded.

Return value

string

1 call to EasyRdf_Http_Response::getRawBody()
EasyRdf_Http_Response::asString in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Response.php
Get the entire response as string

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Response.php, line 191

Class

EasyRdf_Http_Response
Class that represents an HTTP 1.0 / 1.1 response message.

Code

public function getRawBody() {
  return $this->body;
}