Zend Framework 网站中的聊天系统

发布于 2024-10-04 04:00:07 字数 126 浏览 4 评论 0原文

在我的网站中,我必须制作一个类似于 Gmail 的聊天系统,以便注册用户可以与他们的群组聊天。我不知道我将如何做到这一点。任何人都可以向我提供如何实现此功能的想法或任何有用的链接吗?我必须使用 Zend Framework 来完成此操作。

In my website, I have to make a chat system similar to Gmail so registered users can chat with their group. I have no idea about how I will do this. Can anyone provide me with an idea of how to implement this or any useful links? I have to do it using Zend Framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

中性美 2024-10-11 04:00:07

由于您希望使用 Zend 框架来解决这个问题,请查看 Jaxl 库 (Jabber XMPP Client/组件库)。该库可以与任何现有的网站/框架集成,并且还包含几个基于浏览器的聊天应用程序的示例。

Since you are looking to work this out using Zend framework, have a look at Jaxl library (Jabber XMPP Client/Component Library). The library can be integrated with any existing website/framework and also contains several examples for browser based chat applications.

转瞬即逝 2024-10-11 04:00:07

实际上聊天有两个部分:

  • 一个长时间运行的请求,将消息从服​​务器流式传输到客户端
  • Ajax 消息从客户端发送到服务器,向服务器发送一条消息

对于第二个部分,任何 ajax 框架都会这样做。首先,您可以查看 Comet 来了解这一点。但您应该知道 html 并不适合作为聊天协议。如果你不注意,这些东西很容易杀死你的服务器。

Actually there are two parts for chatting:

  • A long running request that streams massges from the server to the client
  • Ajax messages from the client to the server that sends one message to the server

For the second, any ajax framework will do it. For the first you might have a look at Comet to get the idea for this. But you should be aware that html isn't ment to be a chatting protocol. If you don't pay attention such stuff can easily kill your server.

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