laravel 5.8에서 특정 날짜와 시간에 명령을 어떻게 실행할 수 있습니까?
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의 옵션을 사용하면 특정 빈도로만 반복해서 일정을 잡을 수 있으므로 한 번만 명령을 실행하는 것은 낭비입니다.
특정 날짜와 시간에 명령 실행을 한 번만 예약할 수 있는 방법을 알려주실 수 있습니까?
Reference
이 문제에 관하여(laravel 5.8에서 특정 날짜와 시간에 명령을 어떻게 실행할 수 있습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/pcmagas/how-i-can-execute-a-command-at-a-specific-date-and-time-in-laravel-5-8-2pk5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<?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
Reference
이 문제에 관하여(laravel 5.8에서 특정 날짜와 시간에 명령을 어떻게 실행할 수 있습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pcmagas/how-i-can-execute-a-command-at-a-specific-date-and-time-in-laravel-5-8-2pk5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)