Laravel - How to run a function/controller every minute ? (Task Scheduling)

早过忘川 提交于 2021-02-08 10:20:12

问题


https://laravel.com/docs/5.4/scheduling

Hey Guys ,

I have a controller method that i want to run every minute . I read the documentation for Task Scheduling but it seems to document Commands only.

Is there any way that i can use it to call a route/controller method/script every minute ?

<?php

namespace App\Http\Controllers;

use App\Http\Controllers\Controller;
use DateTime;

use Illuminate\Support\Facades\DB;

use App\Acc;


class ScriptController extends Controller
{

    public function UpdateAcc()
    {

        $c = new Scripts\AccountA();

        $xoo = $c->getInfo();

        $z = json_decode($xoo,true);


        $data= new Acc();

        $data->price = $z["result"];

        $data->save();

    }




}

I need to use the DB facades and external classes etc... so its not possible to add it to the kernel method.

Thanks


回答1:


Yes, just like the documentation states, you can make a call to any function. So you can do the following:

$schedule->call(function () {
    $controller = new \App\Http\Controllers\ScriptController();
    $controller->UpdateAcc();
})->everyMinute();

However, it is very bad practice to call a controller out of its web context, you should create a facade or a job that executes the code you want.




回答2:


Yes, you can write a a shell script that will make a CurlRequest to your controller, and add the shell script to a cron job. or you can use laravel commands and call the controller by a request.

why not using the code inside the controller in a command?



来源:https://stackoverflow.com/questions/46075200/laravel-how-to-run-a-function-controller-every-minute-task-scheduling

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!