PHP后台进程

发布于 2024-09-15 08:00:00 字数 78 浏览 5 评论 0原文

我写了一个 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 技术交流群。

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

发布评论

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

评论(3

白昼 2024-09-22 08:00:00

看看下面的网站。关于如何编写 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/

倦话 2024-09-22 08:00:00

screen 中运行它,然后分离。然后,您可以退出终端并稍后重新连接到屏幕会话。

Run it in screen, then detach. You can then quit the terminal and re-attach to the screen session later.

怀中猫帐中妖 2024-09-22 08:00:00

我用类似的东西:

nohup php /path/to/script.php > /dev/null 2> /dev/null&

I use something similar:

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