我需要执行一个shell脚本。问题是我想要做到这一点
$Command = "nohup cvlc input --sout '#transcode {vcodec=h264,acodec=mp3,samplerate=44100}:std{access=http,mux=ffmpeg{mux=flv},dst=0.0.0.0:8083/".output"}' &";
$str = shell_exec($Command);
我不希望它等到命令完成,我希望它在后台进程中运行。 我不想要另一个php线程,因为它将超时命令可能需要3个小时才能完成。
答案 0 :(得分:9)
您可以尝试使用如下函数在后台运行命令:
function exec_bg($cmd) {
if (substr(php_uname(), 0, 7) == "Windows"){
pclose(popen("start /B ". $cmd, "r"));
}
else {
exec($cmd . " > /dev/null &");
}
}
这使你的shell命令运行,但php流程继续。
答案 1 :(得分:8)
$str = shell_exec($Command.' 2>&1 > out.log');
您需要重定向命令的输出。
如果使用此功能启动程序,为了使其在后台继续运行,必须将程序的输出重定向到文件或其他输出流。如果不这样做将导致PHP挂起,直到程序执行结束。