ManaPHP\Cache\Adapter\File::exists PHP 메소드

exists() 공개 메소드

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