From 125cf79a377a1073d18e6c609da9a6fcee64677b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sun, 12 Feb 2012 20:38:28 +0100 Subject: OC_Response: add setExpiresHeader function --- lib/response.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/response.php') diff --git a/lib/response.php b/lib/response.php index 5f095a0affd..7733168b5b9 100644 --- a/lib/response.php +++ b/lib/response.php @@ -42,6 +42,18 @@ class OC_Response { header('Location: '.$location); } + static public function setExpiresHeader($expires) { + if (is_string($expires) && $expires[0] == 'P') { + $interval = $expires; + $expires = new DateTime('now'); + $expires->add(new DateInterval(expires)); + } + if ($expires instanceof DateTime) { + $expires = $expires->format(DateTime::RFC2822); + } + header('Expires: '.expires); + } + static public function setETagHeader($etag) { if (empty($etag)) { return; -- cgit v1.2.3