PHP exec()返回后台进程的值(Linux)
我想在Linux上使用PHP,确定是否成功执行了使用exec()运行的shell命令。我正在使用return_var参数来检查成功的返回值0。这正常工作,直到我需要对必须在后台运行的进程执行相同的操作为止。例如,在以下命令中,$
result返回0:
exec('badcommand > /dev/null 2>&1 &', $output, $result);
我故意将重定向放在其中,我不想捕获任何输出。我只想知道命令已成功执行。那有可能吗?
谢谢,布莱恩
回答:
我的猜测是,您尝试做的事情不可能直接实现。通过使过程成为背景,可以让PHP脚本在结果存在之前继续运行(并可能退出)。
解决方法是拥有第二个PHP(或Bash / etc)脚本,该脚本仅执行命令并将结果写入临时文件。
主要脚本如下所示:
$resultFile = '/tmp/result001';touch($resultFile);
exec('php command_runner.php '.escapeshellarg($resultFile).' > /dev/null 2>&1 &');
// do other stuff...
// Sometime later when you want to check the result...
while (!strlen(file_get_contents($resultFile))) {
sleep(5);
}
$result = intval(file_get_contents($resultFile));
unlink($resultFile);
而command_runner.php
将如下所示:
$outputFile = $argv[0];exec('badcommand > /dev/null 2>&1', $output, $result);
file_put_contents($outputFile, $result);
它不是很漂亮,当然还有增加健壮性和处理并发执行的空间,但是总体思路应该可行。
以上是 PHP exec()返回后台进程的值(Linux) 的全部内容, 来源链接: utcz.com/qa/403421.html