PHP exec()返回后台进程的值(Linux)

PHP exec()返回后台进程的值(Linux),第1张

PHP exec()返回后台进程的值(Linux)

我的猜测是,您尝试做的事情不可能直接实现。通过使过程成为背景,可以让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);

它不是很漂亮,当然还有增加健壮性和处理并发执行的空间,但是总体思路应该可行。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5026231.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存