使用 exec() 启动并行进程。是否可以?
我想使用 exec(command) 运行 1 个以上的 php 进程。其中每一个(实际上它们是相同的)都可能持续很长时间,我不想等待一个完成而不是启动另一个。
换句话说,我希望
for($i=0; $i < $count; $i++) {
exec($command);
}
执行此代码而无需等待上一个进程的返回。
有什么想法吗?
提前致谢!
I want to run more than 1 php processes using exec(command). Each of these (actually they are the same) may last long, and I dont want wait one to finish than launch another.
in other words, I want
for($i=0; $i < $count; $i++) {
exec($command);
}
this code to be executed without waiting for return from previous process.
Any ideas ?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 doc:
Take a look at the doc: