-
Notifications
You must be signed in to change notification settings - Fork 26
Schedule
李铭昕 edited this page Sep 18, 2017
·
1 revision
crontab -e
编辑增加 * * * * * /path/to/php /path/to/run System\\Cron >> /dev/null 2>&1
启动crond 服务
在config/app.php 中维护cron-tasks数组 样例如下
'cron-tasks' => [
['task' => 'System\\Clear', 'action' => 'view', 'params' => ['yes'], 'schedule' => ['dailyAt', [2, 0]]],
],
schedule写法为[方法名,参数数组],详见 Schedule