GNU/Linux >> Linux Esercitazione >  >> Linux

Esegui processo con output in tempo reale in PHP

Questo ha funzionato per me:

$cmd = "ping 127.0.0.1";

$descriptorspec = array(
   0 => array("pipe", "r"),   // stdin is a pipe that the child will read from
   1 => array("pipe", "w"),   // stdout is a pipe that the child will write to
   2 => array("pipe", "w")    // stderr is a pipe that the child will write to
);
flush();
$process = proc_open($cmd, $descriptorspec, $pipes, realpath('./'), array());
echo "<pre>";
if (is_resource($process)) {
    while ($s = fgets($pipes[1])) {
        print $s;
        flush();
    }
}
echo "</pre>";

Questo è un bel modo per mostrare l'output in tempo reale dei comandi della tua shell:

<?php
header("Content-type: text/plain");

// tell php to automatically flush after every output
// including lines of output produced by shell commands
disable_ob();

$command = 'rsync -avz /your/directory1 /your/directory2';
system($command);

Avrai bisogno di questa funzione per impedire il buffering dell'output:

function disable_ob() {
    // Turn off output buffering
    ini_set('output_buffering', 'off');
    // Turn off PHP output compression
    ini_set('zlib.output_compression', false);
    // Implicitly flush the buffer(s)
    ini_set('implicit_flush', true);
    ob_implicit_flush(true);
    // Clear, and turn off output buffering
    while (ob_get_level() > 0) {
        // Get the curent level
        $level = ob_get_level();
        // End the buffering
        ob_end_clean();
        // If the current level has not changed, abort
        if (ob_get_level() == $level) break;
    }
    // Disable apache output buffering/compression
    if (function_exists('apache_setenv')) {
        apache_setenv('no-gzip', '1');
        apache_setenv('dont-vary', '1');
    }
}

Tuttavia, non funziona su tutti i server su cui l'ho provato, vorrei poter offrire consigli su cosa cercare nella configurazione di php per determinare se dovresti o meno strapparti i capelli cercando di far funzionare questo tipo di comportamento sul tuo server! Qualcun altro lo sa?

Ecco un esempio fittizio in semplice PHP:

<?php
header("Content-type: text/plain");

disable_ob();

for($i=0;$i<10;$i++) 
{
    echo $i . "\n";
    usleep(300000);
}

Spero che questo aiuti gli altri che sono arrivati ​​qui su Google.


Linux
  1. Reindirizzamento di un output di una subshell a un processo?

  2. Colorare l'output della coda con Sed?

  3. Eseguire script con argomenti come utente?

  4. Come eseguire il grep con l'output a colori

  5. Come eseguire il processo Rsync in background

Esegui applicazioni Windows su Linux con Crossover 15

Comando Killall in Linux con esempi

Decluttering la gestione dei processi con ps o systemd

Come eseguire uno script Python in PHP

Come eseguire un alias con Sudo in Linux

Come configurare PHP-FPM con NGINX