最新服务器上的版本,以后用这个
zhangmeng
2023-04-19 e3f5aa12f58d986098a9de0f5cb38060e403036d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
 
 
namespace app\jobs;
 
 
use yii\queue\JobInterface;
use yii\queue\Queue;
 
class ClearCacheJob implements JobInterface
{
    public $data;
    public $file;
    public $update;
 
    /**
     * @param Queue $queue which pushed and is handling the job
     * @return void|mixed result of the job execution
     */
    public function execute($queue)
    {
        if ($this->data) $this->clearData();
        if ($this->file) $this->clearFile();
        if ($this->update) $this->clearUpdate();
    }
 
    public function clearData()
    {
        @\Yii::$app->cache->flush();
        $this->clearDirs([
            \Yii::$app->runtimePath . '/wechat-cache',
        ]);
    }
 
    public function clearFile()
    {
        $this->clearDirs([
            \Yii::$app->basePath . '/web/temp',
            \Yii::$app->runtimePath . '/image',
        ]);
    }
 
    public function clearUpdate()
    {
        $this->clearDirs([
            \Yii::$app->runtimePath . '/plugin-package',
            \Yii::$app->runtimePath . '/update-package',
        ]);
    }
 
    protected function clearDirs($dirs)
    {
        foreach ($dirs as $dir) {
            if (file_exists($dir) && is_readable($dir) && is_writable($dir)) {
                @remove_dir($dir);
            }
        }
    }
}