-1

In any given PHP page, if one 'echoes' a given piece of information, it will be sent to a certain user, and no others. What exactly decides which client receives the data, and can this be changed? Furthermore, could one use a single script to send data to multiple clients?

4

1 回答 1

0

简短的回答:没有


长答案:

当您连接到 WebServer 时,Web 服务器会通过向您发送一条数据来响应。在这种情况下,您的“回声”。然后关闭连接和它的历史。

理论上,只要它们连接到网络服务器,就可以将一条数据发送给多个客户端。即他们的网络浏览器显示“加载页面”

实际上,这是不可能的,因为一旦连接关闭,用户必须再次点击刷新按钮才能连接到服务器并获取新数据

我建议你阅读这篇精彩的文章,它将让你对 Web 服务器的工作方式有一个广泛的了解。 http://computer.howstuffworks.com/web-server.htm

于 2013-10-07T03:26:21.903 回答