Refactoring file cache driver.

This commit is contained in:
Taylor Otwell 2011-08-08 10:21:35 -05:00
parent fa3ec4d796
commit e81dd68a94
1 changed files with 1 additions and 6 deletions

View File

@ -31,12 +31,7 @@ public function get($key)
// The cache expiration date is stored as a UNIX timestamp at the beginning
// of the cache file. We'll extract it out and check it here.
if (time() >= substr($cache, 0, 10))
{
$this->forget($key);
return null;
}
if (time() >= substr($cache, 0, 10)) return $this->forget($key);
return unserialize(substr($cache, 10));
}