php temp 删除,Thinkphp5如何清除runtime下的cache、temp以及log缓存
时间: 2024-02-11 11:05:45 浏览: 173
Thinkphp关闭缓存的方法
在ThinkPHP5中,可以通过以下代码清除runtime下的cache、temp以及log缓存:
```php
\think\Cache::clear(); // 清除缓存
\think\Loader::import('think\Log', THINK_PATH, EXT); // 引入Log类文件
\think\Log::clear(); // 清除日志
```
其中,\think\Cache::clear()可以清除缓存,\think\Loader::import('think\Log', THINK_PATH, EXT)用于引入Log类文件,\think\Log::clear()可以清除日志。需要注意的是,以上代码需在项目根目录下执行。
阅读全文