laravel 5.8에서 특정 날짜와 시간에 명령을 어떻게 실행할 수 있습니까?

1911 단어 helplaravelphp
다음과 같이 묻습니다.






21년 3월 9일
댓글: 4
답변: 1


1





특정 날짜 및 시간에 실행되도록 명령을 예약할 수 있어야 합니다.
다음과 같은 doomsday nuking 명령이 있습니다.
<?php
namespace App\Console\Commands;

class DommdayCommand extends Command
{

  protected $signature='nuke:country {commander} {country} ';
  protected $description="Nuke a country";

  public function handle()
  {
    $dictator= $this->argument('commander');
    $country= $this->argument('country');

    $this->output("Nuking the





Open Full Question



특정 날짜와 시간에 한 번만 명령 실행을 예약하려고 합니다.

그러나 laravel의 옵션을 사용하면 특정 빈도로만 반복해서 일정을 잡을 수 있으므로 한 번만 명령을 실행하는 것은 낭비입니다.

특정 날짜와 시간에 명령 실행을 한 번만 예약할 수 있는 방법을 알려주실 수 있습니까?

좋은 웹페이지 즐겨찾기