public function Response::getTrailer

Get the Trailer HTTP header

Return value

string|null The Trailer general field value indicates that the given set of header fields is present in the trailer of a message encoded with chunked transfer-coding.

File

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

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getTrailer() {
  return $this
    ->getHeader('Trailer', true);
}