shell_exec无需等待输出

时间:2011-05-26 14:20:14

标签: php

  

可能重复:
  Asynchronous shell exec in PHP
  Is there a way to use shell_exec without waiting for the command to complete?

我想运行一个非常慢/复杂的程序,至少需要10分钟才能完成。我想通过shell_exec或类似的东西来调用它,但我不希望php脚本等待这个程序的完成。

是我可以做的事情吗?如果是这样我怎么能这样做?

1 个答案:

答案 0 :(得分:20)

此问题已在Asynchronous shell exec in PHP

之前得到解答

简言之:

shell_exec( $your_command . "> /dev/null 2>/dev/null &" );