我使用Cron(https://github.com/liebig/cron)为Laravel 4在特定时间运行特定任务
我在Global.php中有这段代码
Event::listen('cron.collectJobs', function() {
Cron::add('example1', '* * * * *', function() {
$trip = new TripReminder();
$trip->checkDateAndSendEmail();
});
Cron::setRunInterval(1);
$report = Cron::run();
print_r ($report);
});
=>此代码用于在每分钟向客户发送电子邮件(只是演示和检查)
在cmd中,我运行此命令“php artisan cron:run”
它运行良好,电子邮件也被发送,但是,它只运行了1次。
我不知道我错过了什么。
请帮忙!
谢谢!