ManaPHP\Cache\Adapter\File::exists PHP Méthode

exists() public méthode

public exists ( string $key ) : boolean
$key string
Résultat boolean
    public function exists($key)
    {
        $file = $this->_getFileName($key);
        return @filemtime($file) >= time();
    }