如何检查 Laravel 命令是否仍然是 运行?

How to check if Laravel command is still running?

我四处寻找,找不到答案。

那么,有没有办法检查我们已经启动的自定义 Laravel 命令是否还在 运行,或者它已经完成了它的工作?

当运行您希望确认或不确认运行的某些命令时,您总是可以将信息记录到日志文件中。

您可以将日志代码直接放在命令的句柄方法中。

    public function handle()
    {
        // Handle some command logic...

        Log::info('This is some useful information about the command that just ran its course.');
    }