标签: php windows
背景:我从PHP调用一个长时间运行的可执行文件(2分钟)。 PHP exec(longprocess)函数在运行下一个之前等待进程终止(例如,呈现HTML)。
exec(longprocess)
我希望程序立即终止,但允许我在后台运行程序,以便我可以执行exec(backgrounder longprocess),让longprocess在后台运行。
exec(backgrounder longprocess)
longprocess
答案 0 :(得分:0)
您可以尝试start命令:
start
exec("start someprogram.exe");
答案 1 :(得分:0)
尝试并行处理:http://phplens.com/phpeverywhere/?q=node/view/254