public function Response::getContentLocation

Get the Content-Location HTTP header

Return value

string|null Returns an alternate location for the returned data (e.g /index.htm)

File

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

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

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