Home > Backend Development > PHP Tutorial > php原生websocket不能主推?

php原生websocket不能主推?

WBOY
Release: 2016-06-06 20:18:48
Original
1482 people have browsed it

最近在研究php上实现websocket。

服务器向client发送消息的命令只有socket_send和socket_write。

研究半天之后,突然发现只有client发送消息的时候,socket_send和socket_write才有效执行,客户端也能接收数据。

当服务器试图主动推送数据的时候,socket_send和socket_write执行之后居然直接导致client断开连接?

什么情况,难道php的websocket无法主推?

回复内容:

最近在研究php上实现websocket。

服务器向client发送消息的命令只有socket_send和socket_write。

研究半天之后,突然发现只有client发送消息的时候,socket_send和socket_write才有效执行,客户端也能接收数据。

当服务器试图主动推送数据的时候,socket_send和socket_write执行之后居然直接导致client断开连接?

什么情况,难道php的websocket无法主推?

此问题已解决,php当然可以主推,之所以我主推断开,是因为我直接把未转换的字符发出去了,按照逻辑,应该转换一下格式再发出去,已成功实现主推、被动推送

这个应该需要去建立一个长连接吧,多线程也是必须的,肯定要上扩展。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template