我正在创建一个自定义命令,它将每三十分钟在控制台内核中截断一个表(出于开发目的)。我想在上一个命令之后再运行一次。
P.S:我有一个if语句,它阻止在生产服务器上运行这些命令。
$schedule->command('db:seed')->after(function () use ($schedule) : void {
$schedule->command('my-command:remove-users-from-tables')
->everyThirtyMinutes()
->environments(['demo', 'local']);
});
我希望每隔30分钟成功运行一次“ my-command”后立即运行播种器。但是,以这种方式,只有db:seed
运行。
答案 0 :(得分:0)
我已经检查了Illuminate\Console\Scheduling\Schedule类的源代码。
我想当我们说:
$schedule->command(...);
工匠命令将被调度,而不是立即运行。
所以当你这样写的时候:
$schedule->command('first-command')->after(function () use ($schedule) {
$schedule->command('second-command');
});
第二条命令将被注册,而不是在第一条命令之后立即运行。
因此,我能想到的最佳方法是根据this link
在第一个命令中运行第二个命令您可以尝试如下操作:
namespace App\Console\Commands;
use Illuminate\Console\Command;
class RemoveUsersFromTable extends Command
{
public function handle()
{
// Do something to remove users from table.
$this->call('db:seed');
}
}
答案 1 :(得分:0)
在某些情况下可能相关的替代方案(但我可以想象在其他情况下也是一个坏主意)是运行 shell_exec
:https://www.php.net/manual/en/function.shell-exec.php
如果您想使用 &&
将两个 artisan 命令链接在一起,就像在 cli 上一样,您可以简单地使用 shell_exec('php artisan command:first && php artisan command:second')
。
shell_exec
返回控制台输出,因此如果您的命令打印任何内容(即通过 $this->info
),那么您可以像这样将其打印到控制台:$this->info(shell_exec('php artisan command:first && php artisan command:second'))
我可能会讨厌这个答案...