通过命令行调用laravel控制器

时间:2015-03-04 23:04:06

标签: php laravel

在kohana框架中,我可以使用

通过命令行调用控制器
php5 index.php --uri=controller/method/var1/var2

是否可以通过cli呼叫Laravel 5中我想要的控制器?如果是的话,怎么做?

5 个答案:

答案 0 :(得分:51)

目前还没有办法(不确定是否会有)。但是,您可以创建自己的Artisan Command来做到这一点。使用以下命令创建命令CallRoute

php artisan make:console CallRoute

这将在app/Console/Commands/CallRoute.php中生成一个命令类。该类的内容应如下所示:

<?php namespace App\Console\Commands;

use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Illuminate\Http\Request;

class CallRoute extends Command {

    protected $name = 'route:call';
    protected $description = 'Call route from CLI';

    public function __construct()
    {
        parent::__construct();
    }

    public function fire()
    {
        $request = Request::create($this->option('uri'), 'GET');
        $this->info(app()['Illuminate\Contracts\Http\Kernel']->handle($request));
    }

    protected function getOptions()
    {
        return [
            ['uri', null, InputOption::VALUE_REQUIRED, 'The path of the route to be called', null],
        ];
    }

}

然后,您需要通过将命令添加到$commands中的app/Console/Kernel.php数组来注册该命令:

protected $commands = [
    ...,
    'App\Console\Commands\CallRoute',
];

现在可以使用以下命令调用任何route

php artisan route:call --uri=/route/path/with/param

请注意,此命令将返回响应,因为它将发送到浏览器,这意味着它包含输出顶部的HTTP标头。

答案 1 :(得分:31)

我正在使用Laravel 5.0,我正在使用此代码触发控制器:

$ php artisan tinker
$ $controller = app()->make('App\Http\Controllers\MyController');
$ app()->call([$controller, 'myMethodName'], []);

[]中的最后app()->call()可以包含[user_id] => 10等参数

答案 2 :(得分:14)

对于Laravel 5.4: php artisan make:命令CallRoute

然后在app/Console/Commands/CallRoute.php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Http\Request;

class CallRoute extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'route:call {uri}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'php artsian route:call /route';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $request = Request::create($this->argument('uri'), 'GET');
        $this->info(app()->make(\Illuminate\Contracts\Http\Kernel::class)->handle($request));
    }

}

然后在app/Console/Kernel.php

protected $commands = [
    'App\Console\Commands\CallRoute'
];

请致电:php artisan route:call /path

答案 3 :(得分:0)

您也可以通过这种方式进行操作。首先,使用

创建命令
php artisan command:commandName

现在在命令的handle中,调用控制器并触发方法。 例如,

public function handle(){
 $controller = new ControllerName(); // make sure to import the controller
 $controller->controllerMethod();
}

这实际上可以完成工作。希望这会有所帮助。

答案 4 :(得分:0)

Laravel 5.7

使用修补匠

 // URL: http://xxx.test/calendar?filter[id]=1&anotherparam=2
 $cc = app()->make('App\Http\Controllers\CalendarController');
 app()->call([$cc, 'getCalendarV2'], ['filter[id]'=>1, 'anotherparam' => '2']);