将数据从 php 发送到不同用户计算机上的 javascript
我正在开发一个聊天客户端,当一个用户请求与另一个用户交谈时,我会进行一次会话。进行会话的 PHP 脚本如何将会话号发送给其他客户端。
I'm working on a chat client and when one user makes a request to talk to the other user im making a session. How can the PHP script that makes the session send the session number to the other client.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用异步调用库,例如 CometD 或任何其他用于异步通信的 javascript 库。从技术上讲,您将使用观察者模式。
By using an asynchronous call library like CometD or any other javascript library for asynchronous communication. Technically, you'll use an Observer Pattern.