public function Response::getContentMd5

Get the Content-MD5 HTTP header

Return value

string|null Returns a Base64-encoded binary MD5 sum of the content of the response.

File

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

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

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