public function Response::getContentDisposition

Get the Content-Disposition HTTP header

Return value

string|null Returns the Content-Disposition header

File

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

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getContentDisposition() {
  return (string) $this
    ->getHeader('Content-Disposition')
    ->setGlue(';');
}