删除cakephp 3中的所有缓存文件

delete all cache file in cakephp 3

我想删除 /tmp/cache 中的所有文件。我的代码 spinet 如下:

\Cake\Cache\Cache::delete();

但它给出了以下错误: -错误:函数 Cake\Cache\Cache::delete() 的参数太少,第 94 行 G:\xamp727\htdocs\bootique_api\src\Controller\PagesController.php 中传递了 0 个参数,预期至少有 1 个

如果你想全部删除使用clearAll()方法。 method doc