使用PHP内置Web服务器中的shell_exec运行后台进程

时间:2015-05-18 18:22:24

标签: php shell-exec php-builtin-server

PHP内置的网络服务器似乎没有正确处理shell_exec()后台进程;请求会一直挂起,直到后台进程完成,即使它已明确放在后台&

示例:

$ ls
runit.php
$ cat runit.php 
<?php
echo "Here we are\n";
shell_exec("sleep 5 &");
echo "and the command is done\n";
?>
$ php -S localhost:7891
PHP 5.5.9-1ubuntu4.9 Development Server started at Mon May 18 19:20:12 2015
Listening on http://localhost:7891
Press Ctrl-C to quit.

然后在另一个shell中:

$ GET http://localhost:7891/runit.php
(...waits five seconds...)
Here we are
and the command is done

这不应该发生,如果使用生产级网络服务器,确实不会发生。有没有办法解决它?

(注意:这不是一个刷新问题。在第一个回显之后添加flush()并不会使它发生,并且请求仍然会挂起,直到后台进程完成。)

2 个答案:

答案 0 :(得分:1)

这是acknowledged as a bug by PHP, but won't be fixed in the built-in webserver。但是,错误报告也提出了一种解决方法;在响应上设置正确的Content-Length,然后接收浏览器将在收到大量数据后在客户端关闭请求,从而解决问题。

答案 1 :(得分:-1)

您的选择是:

1)使用单独的线程来运行您的流程

<?php 
for ($i = 1; $i <= 5; ++$i) { 
        $pid = pcntl_fork(); 

        if (!$pid) { 
            sleep(1); 
            print "In child $i\n"; 
            exit($i); 
        } 
    } 

    while (pcntl_waitpid(0, $status) != -1) { 
        $status = pcntl_wexitstatus($status); 
        echo "Child $status completed\n"; 
    } 
?>

2)你可以在你的shell exec的末尾追加'> /dev/null 2>/dev/null &',这也会消除所有输出,但它会运行命令。 使它看起来像

shell_exec('sleep 5 > /dev/null 2>/dev/null &');