语法
Cache::clear();
示例代码
<?phprequire '../vendor/autoload.php';use renpengpeng\Cache;Cache::connect(['type' => 'File','file' => ['cache_dir' => realpath(__DIR__).DIRECTORY_SEPARATOR.'cache']]);// 设置一个缓存Cache::set('cache',100);// 清空缓存Cache::clear();
