Home >Backend Development >PHP Tutorial >php socket怎么让两个socket client间通信

php socket怎么让两个socket client间通信

WBOY
WBOYOriginal
2016-06-06 20:20:471548browse

php socket怎么让两个socket client间通信 比如client a ->server->client b 现在我用的数据库存了下数据 不通过数据库可以实现吗 求大神

回复内容:

php socket怎么让两个socket client间通信 比如client a ->server->client b 现在我用的数据库存了下数据 不通过数据库可以实现吗 求大神

通过一个server端就可以了

可以的,如你所示通过服务器中转就行。数据保存在服务端server上,不用数据库的话用文件或存放于内存都行。
通信流程:
client A、B连接到服务器并发送自己的uid,服务器保存client的套接字描述符socket_id与uid。
在A、B互发信息时,由服务器根据对方uid查询对应的socket_id,从对应套接字将数据发送出去即可。

Statement:
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