phprs\util\FileCache::del PHP 메소드

del() 공개 메소드

删除key
public del ( string $key ) : boolean
$key string
리턴 boolean Returns true on success or false on failure.
    public function del($key)
    {
        $path = $this->cache_dir . '/' . sha1($key);
        return @unlink($path);
    }