防止等待命令行输出
我认为这会在不等待输出的情况下运行:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
命令末尾缺少
&
you're missing
&
on the end of command如果使用
exec
运行某些内容,文档指出If running something with
exec
, the documentation states