Verwenden Sie diese Funktion, um Ihr Programm im Hintergrund auszuführen. Es ist plattformübergreifend und vollständig anpassbar.
<?php
function startBackgroundProcess(
$command,
$stdin = null,
$redirectStdout = null,
$redirectStderr = null,
$cwd = null,
$env = null,
$other_options = null
) {
$descriptorspec = array(
1 => is_string($redirectStdout) ? array('file', $redirectStdout, 'w') : array('pipe', 'w'),
2 => is_string($redirectStderr) ? array('file', $redirectStderr, 'w') : array('pipe', 'w'),
);
if (is_string($stdin)) {
$descriptorspec[0] = array('pipe', 'r');
}
$proc = proc_open($command, $descriptorspec, $pipes, $cwd, $env, $other_options);
if (!is_resource($proc)) {
throw new \Exception("Failed to start background process by command: $command");
}
if (is_string($stdin)) {
fwrite($pipes[0], $stdin);
fclose($pipes[0]);
}
if (!is_string($redirectStdout)) {
fclose($pipes[1]);
}
if (!is_string($redirectStderr)) {
fclose($pipes[2]);
}
return $proc;
}
Beachten Sie, dass diese Funktion nach dem Start des Befehls standardmäßig das stdin und stdout des laufenden Prozesses schließt. Sie können die Prozessausgabe über die Argumente $ redirectStdout und $ redirectStderr in eine Datei umleiten.
Hinweis für Windows-Benutzer:
Sie können stdout / stderr nicht auf nul
folgende Weise umleiten :
startBackgroundProcess('ping yandex.com', null, 'nul', 'nul');
Sie können dies jedoch tun:
startBackgroundProcess('ping yandex.com >nul 2>&1');
Hinweise für * nix Benutzer:
1) Verwenden Sie den Befehl exec shell, wenn Sie die tatsächliche PID erhalten möchten:
$proc = startBackgroundProcess('exec ping yandex.com -c 15', null, '/dev/null', '/dev/null');
print_r(proc_get_status($proc));
2) Verwenden Sie das Argument $ stdin, wenn Sie einige Daten an die Eingabe Ihres Programms übergeben möchten:
startBackgroundProcess('cat > input.txt', "Hello world!\n");