Zend Framework 网站中的聊天系统
在我的网站中,我必须制作一个类似于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您希望使用 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.
实际上聊天有两个部分:
对于第二个部分,任何 ajax 框架都会这样做。首先,您可以查看 Comet 来了解这一点。但您应该知道 html 并不适合作为聊天协议。如果你不注意,这些东西很容易杀死你的服务器。
Actually there are two parts for chatting:
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.