public function Response::getContentRange

Get the Content-Range HTTP header

Return value

string Returns where in a full body message this partial message belongs (e.g. bytes 21010-47021/47022).

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Response.php, line 512

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getContentRange() {
  return $this
    ->getHeader('Content-Range', true);
}