PHP后台进程
我写了一个 php irc 机器人,但我需要它在后台工作。有了这个,就不会有退出之类的事情了。最好的方法是什么?
谢谢和问候。
I've wrote a php irc bot, but i need it to work in the background. With this there'd be no quits or so. What is the best way to do this?
Thanks and Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看下面的网站。关于如何编写 PHP 守护进程有一个相当深入的解释。
http://kevin.vanzonneveld.net/techblog/article/create_daemons_in_php/
Take a look at the following website. There is a pretty descend explanation on how to write PHP daemons.
http://kevin.vanzonneveld.net/techblog/article/create_daemons_in_php/
在 screen 中运行它,然后分离。然后,您可以退出终端并稍后重新连接到屏幕会话。
Run it in screen, then detach. You can then quit the terminal and re-attach to the screen session later.
我用类似的东西:
I use something similar: