swoft-ext icon indicating copy to clipboard operation
swoft-ext copied to clipboard

fix */ step values error

Open ranLee1 opened this issue 4 years ago • 0 comments

fix Cron

  • 修复cron 不支持每几秒触发一次的问题

使用方式

class CronTask
{

    /**
     * @Cron(value="*\/5 * * * *")
     */
    public function check(): void
    {
        CLog::info("定时任务每5秒触发");
    }
}

ranLee1 avatar Jun 29 '21 02:06 ranLee1