index(); } //每周执行 public function PerformPerWeek() { $cron = new \app\cron\controller\Subsidy(); $cron->index(); } //每10秒执行 public function TenSeconds() { $cron = new \app\cron\controller\TenSeconds(); $cron->index(); } //每天执行 public function DaySeconds() { $cron = new \app\cron\controller\DaySeconds(); $cron->index(); } }