防止等待命令行输出

发布于 2024-12-11 23:14:07 字数 209 浏览 0 评论 0原文

我认为这会在不等待输出的情况下运行:

php /scripts/htdocs/summaries.live/app/scripts/generate-pdfs.php live 1 > /dev/null 2>&1

但它没有发生。 PHP 的 exec() 函数正在等待输出。我该如何解决这个问题以防止这种情况发生?

I thought that this would run without waiting for an output:

php /scripts/htdocs/summaries.live/app/scripts/generate-pdfs.php live 1 > /dev/null 2>&1

But it's not happening. PHP's exec() function is waiting for an output. How can I work around this to prevent this from happening?

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

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

发布评论

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

评论(2

青衫儰鉨ミ守葔 2024-12-18 23:14:07

命令末尾缺少 &

php /scripts/htdocs/summaries.live/app/scripts/generate-pdfs.php live 1 > /dev/null 2>&1 &

you're missing & on the end of command

php /scripts/htdocs/summaries.live/app/scripts/generate-pdfs.php live 1 > /dev/null 2>&1 &
莫相离 2024-12-18 23:14:07

如果使用 exec 运行某些内容,文档指出

注意:

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

If running something with exec, the documentation states

Note:

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 和您的相关数据。
原文