有没有办法只重生 php 子进程而不重新启动 php 本身?
我正在运行 php-fpm,我想关闭并重新启动 php 子项,而不需要重新启动 php 本身。
I'm running php-fpm and I'd like to shutdown and respawn php children without restarting php itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,通过使用 pcntl 函数, pcntl_fork() 中特别是你的朋友。
你可以在 this 上找到许多代码示例页面。
简单示例:
这很简单,在现实生活中,您需要检查的内容比这更多,请查看 php.net 上的 pcntl 部分,以及 php.net 上的一些代码示例我给你发的页面。希望这能让您走上正轨,快乐编码。
Actually, there is by using pcntl functions, pcntl_fork() in particular would be your friend for this..
You can find many code examples on this page.
Trivial example:
This is as simple as it gets, in real life you have a bit more to check for than this, do look at pcntl section on php.net, and a few of the code examples on the page I posted you. Hope that gets you on the right track, happy coding.