PHP 运行非阻塞系统调用

发布于 2024-12-03 07:42:08 字数 313 浏览 1 评论 0原文

如何在 PHP 中运行非阻塞系统调用?

该系统调用将调用由第二个 PHP 脚本运行的流服务。因此我的页面会等待此调用。

我对解决方案的两个想法:

1:存在一个本机方法/参数来通过非阻塞执行系统调用

2:在一个新的 C++ 程序上运行 system(),然后该程序将分叉自身并运行实际的 php 脚本。 。 thread

是否有以非阻塞方式执行系统调用的本机方法,或者我是否需要解决这个问题...

我目前有 shell_exec('nohup php /path/to/file.php &') 但它仍然有效

How can I run a non blocking system call in PHP?

The system call will call a streaming service run by a second PHP script.. So my page sits and waits on this call.

My two thoughts on a solution:

1: There exists a native method / parameter to execute a system call by non blocking

2: Run system() on a new C++ program that will then fork itself and run the actual php script, on a sep. thread

Is there a native method of executing system calls in a non blocking manner or do I need to hack around this...

I currently have shell_exec('nohup php /path/to/file.php &') but it still holds

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

又怨 2024-12-10 07:42:08

来自 PHP 手册

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

同一页面的评论中提供了一个示例(基于 Linux):

如果你想启动一个继续独立运行的php进程
从 apache(具有不同的父 pid)使用 nohub。示例:

exec('nohup php process.php > process.out 2> process.err < /dev/null
&');

From PHP manual:

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.

An example is provided in a comment on the same page (linux based):

If you want to start a php process that continues to run independently
from apache (with a different parent pid) use nohub. Example:

exec('nohup php process.php > process.out 2> process.err < /dev/null
&');

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