You are here

public function EasyRdf_Http_Response::getRawBody in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Response.php \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 vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Response.php
Get the entire response as string

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Response.php, line 190

Class

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

Code

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