使用 exec() 启动并行进程。是否可以?

发布于 2024-12-09 07:23:59 字数 243 浏览 0 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤千羽 2024-12-16 07:24:00

看一下 doc

如果一个程序用这个函数启动,为了让它
继续在后台运行,程序的输出必须是
重定向到文件或另一个输出流。如果不这样做将会
导致 PHP 挂起,直到程序执行结束。

Take a look at the doc:

If a program is started with this function, in order for it to
continue running in the background, the output of the program must be
redirected to a file or another output stream. Failing to do so will
cause PHP to hang until the execution of the program ends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文