“Laravel Execute -Befehl vom Terminal ausführen” Code-Antworten

Führen Sie den Handwerkskandidaten von Controller aus

If you have simple job to do you can do it from route file. 
For example you want to clear cache. In terminal it would be php artisan 
cache:clear In route file that would be:

\Artisan::call('cache:clear');
Lokesh003

Laravel Execute -Befehl vom Terminal ausführen

php artisan command:name
Thoughtless Tortoise

Handwerker machen Kommando

php artisan make:command CommandName
RaFiNhA90

Führen Sie den Befehl Shell in Laravel aus

use Symfony\Component\Process\Process;
use Symfony\Component\Process\Exception\ProcessFailedException;

$process = new Process('sh /folder_name/file_name.sh');
$process->run();

// executes after the command finishes
if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}

echo $process->getOutput();
lalala

Befehl Laravel Run

class MyCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'my:command';
}


php artisan my:command

MrDracoula

Ähnliche Antworten wie “Laravel Execute -Befehl vom Terminal ausführen”

Fragen ähnlich wie “Laravel Execute -Befehl vom Terminal ausführen”

Weitere verwandte Antworten zu “Laravel Execute -Befehl vom Terminal ausführen” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen