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.
然后在另一个外壳中:
$ GET http://localhost:7891/runit.php
(...waits five seconds...)
Here we are
and the command is done
这不应该发生,如果使用生产级网络服务器,确实不会发生。有没有办法解决它?
(注意:这不是刷新问题。flush()
在第一次回显之后添加不会使其发生,并且请求仍然挂起,直到后台进程完成。)