可能重复:
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.
请建议我做错了什么?