Lahost在localhost上的任务调度

时间:2017-03-17 14:30:38

标签: javascript php laravel

我是laravel的新手。我想使用laravel 5.3在我的应用程序上安排一些任务。但我仍然在localhost上运行我的应用程序。请有人向我解释如何在localhost上完成laravel任务调度。

2 个答案:

答案 0 :(得分:0)

我假设您使用的是Windows。

使用 at 命令安排任务运行 php artisan schedule:run 。 您还必须确保php可执行文件位于系统路径中:How do I add my PHP directory to the PATH on Windows?

How To Use the AT Command to Schedule Tasks

答案 1 :(得分:-1)

要开始使用Laravel Scheduling,首先必须在终端上运行此命令。

php artisan make:command command_name

然后检查目录中的文件。 App \ Consol \ Commnads ,您将拥有一个command_name文件。按照以下脚本中的说明进行编辑。

protected $signature = 'save:file';

之后,将您自己的方法和任务添加到处理功能 最后,运行此命令以检查计划是否正常工作。

php artisan save:file