我使用laravel 5.6
我像这样在kernel.php中设置时间表:
<?php
namespace App\Console;
use App\Console\Commands\ImportLocation;
use App\Console\Commands\ImportItem;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
protected $commands = [
ImportLocation::class,
ImportItem::class,
];
protected function schedule(Schedule $schedule)
{
$schedule->command('inspire')->dailyAt('23:00');
}
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}
所以有两个命令
我将显示这样的命令之一:
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\Location;
class ImportLocation extends Command
{
protected $signature = 'import:location';
protected $description = 'import data';
public function __construct()
{
parent::__construct();
}
public function handle()
{
...
}
}
我想通过url运行命令。所以它不能在命令提示符下运行
我这样尝试:
我在路由中添加了该脚本:Route::get('artisan/{command}/{param}', 'CommandController@show');
,并制作了一个像这样的控制器:
namespace App\Http\Controllers;
class CommandController extends Controller
{
public function show($command, $param)
{
$artisan = \Artisan::call($command.":".$param);
$output = \Artisan::output();
return $output;
}
}
我从url这样呼叫:http://myapp-local.test/artisan/import/location
有效。但是它只运行一个命令
我想在内核中运行所有命令。因此,运行导入位置和导入项目
我该怎么办?
答案 0 :(得分:0)
您可以做的是在Kernel.php中注册一个自定义方法,以检索受保护的$commands
数组中的所有自定义注册命令:
public function getCustomCommands()
{
return $this->commands;
}
然后,您可以在控制器中将它们全部循环并通过Artisan的call()
或queue()
方法执行它们:
$customCommands = resolve(Illuminate\Contracts\Console\Kernel::class)->getCustomCommands();
foreach($customCommands as $commandClass)
{
$exitCode = \Artisan::call($commandClass);
//do your stuff further
}
您可以在documentation's page上了解的更多命令