You are here

function HTTP_Request::getResponseBody in Flickr API 5

Returns the body of the response

@access public

Return value

mixed response body, false if not set

File

phpFlickr/PEAR/HTTP/Request.php, line 862

Class

HTTP_Request
Class for performing HTTP requests

Code

function getResponseBody() {
  return isset($this->_response->_body) ? $this->_response->_body : false;
}