PHP CLi - 设置在命令行上运行然后继续?不希望 bash 脚本等待
希望是一个快速的问题。我有一个运行 php 脚本的 .sh 脚本 - php 需要一些时间才能完成,我希望 .sh 脚本继续进行。
这可能吗?如果是这样,怎么会这样呢?
Hopefully a quick question. I have a .sh script running a php script - the php takes some time to complete and I want the .sh script to proceed.
Is that possible? And if so, how so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
php somescript.php &
?末尾的&
使 sh 脚本继续执行。如果您希望 php 脚本比 shell 脚本更长寿,请尝试以下操作:
Have you tried
php somescript.php &
? The&
at the end causes the sh script to continue executing.If you want the php script to outlive the shell script, try this: