使用shell_exec()在php中的后台进程

时间:2013-02-04 09:03:14

标签: php exec wamp

  

可能重复:
  PHP exec() as Background Process (Windows Wampserver Environment)

我正在使用WAMP服务器来执行我的php脚本。

我有一个名为MainController.php的控制器文件,命令行参数传递给该文件。在命令行参数的基础上,每次都使用e.g. test1.php , test2.php and so on函数执行一个新的单独的php脚本exec()

我希望我的MainController.php不要等待执行的php脚本like test1.php的响应,并且应该继续进行。

目前我正在使用以下语句在后台执行脚本 shell_exec('C:\wamp\bin\php\php5.3.13\php.exe test1.php > /dev/null 2>/dev/null &');

但它给了我一个错误

The system cannot find the path specified.

请建议我做错了什么?

0 个答案:

没有答案