yzh52521/webman-task 如何使用类任务

xingxing777

问题描述

<?php

namespace app\admin\crontab;

class ClearLogs
{
    public function test()
    {
        echo '清除完成';
    }
}

请问应该怎么填写?怎么填写都是提示类不存在

已经解决
需要使用预设格式

<?php

namespace app\admin\crontab;

use support\Log;

class ClearLogs
{

    // 默认执行方法
    public function execute()
    {
        echo 'aaaas';
        return 'OK';
    }   
}
24 0 0
0个回答

×
🔝