public function Response::getLastModified

Same name in this branch

Get the Last-Modified HTTP header

Return value

string|null Returns the last modified date for the requested object, in RFC 2822 format (e.g. Tue, 15 Nov 1994 12:45:26 GMT)

1 call to Response::getLastModified()

File

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

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getLastModified() {
  return $this
    ->getHeader('Last-Modified', true);
}