Skip to content

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

Clone this wiki locally